summaryrefslogtreecommitdiff
path: root/c++/codec/data.h
diff options
context:
space:
mode:
Diffstat (limited to 'c++/codec/data.h')
-rw-r--r--c++/codec/data.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/c++/codec/data.h b/c++/codec/data.h
index 9e4dbf7..237ef5a 100644
--- a/c++/codec/data.h
+++ b/c++/codec/data.h
@@ -177,24 +177,6 @@ public:
}
};
-class data<schema::FixedArray<T, Dims...>, encode::Native> {
-private:
- template<std::size_t D0, std::size_t... DN>
- struct multiply_helper {
- static constexpr std::size_t calc(){
- if constexpr ( sizeof...(DN) > 0 ){
- return D0 * multiply_helper<DN...>::calc();
- }
- return D0;
- }
- };
-
-public:
- data():
- value_{std::make_unique<inner_type>()}
- {}
-};
-
template<typename T, size_t Dim>
class data<schema::Array<T,Dim>, encode::Native> {
private: