diff options
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; |