diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-16 13:55:33 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-16 13:55:33 +0200 |
commit | 5c51432c10a29d405da0004fa4d314d8b9f3c070 (patch) | |
tree | 779680c18efda6de7521d8cf1229a16b3ed9c265 | |
parent | f10755950a0107990f26fcadff75ae699cb91bd6 (diff) |
Fixing data types
-rw-r--r-- | modules/codec/c++/data.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp index 5dd8e12..51a34ef 100644 --- a/modules/codec/c++/data.hpp +++ b/modules/codec/c++/data.hpp @@ -324,11 +324,11 @@ public: {} constexpr data<T, encode::Native>& at(data<schema::UInt64, encode::Native> i) { - return value_.at(this->get_flat_index({i.get()})); + return value_.at(this->get_flat_index({i})); } constexpr const data<T, encode::Native>& at(data<schema::UInt64, encode::Native> i) const { - return value_.at(this->get_flat_index({i.get()})); + return value_.at(this->get_flat_index({i})); } constexpr data<T, encode::Native>& at(const data<schema::FixedArray<schema::UInt64, sizeof...(D)>>& i){ |