diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-16 10:30:20 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-16 10:30:20 +0200 |
commit | 451969e31ee920787c341090d31d7235d564779c (patch) | |
tree | 7270834fdf2c374d9551f63a3dfe207aeb5c20b2 /modules | |
parent | ba42d1388bd35c37564fa634cbb99f8d53e511d1 (diff) |
Removing std types
Diffstat (limited to 'modules')
-rw-r--r-- | modules/codec/c++/data.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/codec/c++/data.hpp b/modules/codec/c++/data.hpp index 9cb26c6..11f98e5 100644 --- a/modules/codec/c++/data.hpp +++ b/modules/codec/c++/data.hpp @@ -353,7 +353,7 @@ private: uint64_t stride = 1; - constexpr static data<schema::FixedArray<schema::UInt64, sizeof...(D)>> dims_{D...}; + constexpr static std::array<uint64_t, sizeof...(D)> dims_{D...}; for(uint64_t iter = 0; iter < sizeof...(D); ++iter){ assert(i.at(iter) < dims_.at(iter)); |