diff options
-rw-r--r-- | c++/codec/data.h | 18 |
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: |