summaryrefslogtreecommitdiff
path: root/modules/codec/c++/data.hpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-04-09 13:48:54 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-04-09 13:48:54 +0200
commit3e10a47c7329033cfc4eaea19418b57ae83481a9 (patch)
tree727f0804a398322f3b1b46ba235ebc6cb2ae7269 /modules/codec/c++/data.hpp
parent73a532a06e06bb020391e30eb9baaf28a2e1f9ea (diff)
codec: Fixed broken case
Diffstat (limited to 'modules/codec/c++/data.hpp')
-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));
}