summaryrefslogtreecommitdiff
path: root/modules/codec/c++
diff options
context:
space:
mode:
Diffstat (limited to 'modules/codec/c++')
-rw-r--r--modules/codec/c++/data.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp
index ee3003e..2cf2a96 100644
--- a/modules/codec/c++/data.hpp
+++ b/modules/codec/c++/data.hpp
@@ -318,13 +318,6 @@ private:
public:
data() = default;
- data(const std::array<typename native_data_type<T>::type, ct_multiply<uint64_t, D...>::value>& data) requires (is_primitive<T>::value)
- {
- for(uint64_t i = 0; i < ct_multiply<uint64_t, D...>::value; ++i){
- value_.at(i).set(data.at(i));
- }
- }
-
data<T, encode::Native>& at(const std::array<uint64_t, sizeof...(D)>& ind){
return value_.at(this->get_flat_index(ind));
}