diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-17 14:41:12 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-17 14:41:12 +0200 |
commit | 4a85d662012360fecffc9b0e58a582204f631957 (patch) | |
tree | 5e87d8d385742824d9ffe1ef76d01e3257a0e80e /modules/codec/c++/data_raw.hpp | |
parent | 76409ba8c1a57c9be68baf2d2c480673eb186eda (diff) |
Rewriting parts to avoid infinite recursion in flat index call
Diffstat (limited to 'modules/codec/c++/data_raw.hpp')
-rw-r--r-- | modules/codec/c++/data_raw.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/codec/c++/data_raw.hpp b/modules/codec/c++/data_raw.hpp index 2236d05..acfb3d8 100644 --- a/modules/codec/c++/data_raw.hpp +++ b/modules/codec/c++/data_raw.hpp @@ -124,7 +124,7 @@ public: }; template<typename T, uint64_t N> -class data<schema::Ref<schema::Primitive<T,N>>, encode::NativeRaw> { +class data<schema::Ref<schema::Primitive<T,N>>, encode::NativeRaw> final { public: using ReferencedSchema = schema::Primitive<T,N>; using Schema = schema::Ref<ReferencedSchema>; @@ -404,7 +404,7 @@ public: }; template<typename T, size_t Dim> -class data<schema::Array<T,Dim>, encode::NativeRaw> { +class data<schema::Array<T,Dim>, encode::NativeRaw> final { public: using Schema = schema::Array<T,Dim>; using MetaSchema = typename meta_schema<Schema>::MetaSchema; |