summaryrefslogtreecommitdiff
path: root/modules/codec/c++/schema_meta.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/codec/c++/schema_meta.hpp')
-rw-r--r--modules/codec/c++/schema_meta.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/codec/c++/schema_meta.hpp b/modules/codec/c++/schema_meta.hpp
index 80b6686..659250c 100644
--- a/modules/codec/c++/schema_meta.hpp
+++ b/modules/codec/c++/schema_meta.hpp
@@ -78,9 +78,9 @@ struct meta_schema<schema::Array<T,Dim>> {
using Schema = schema::Array<T,Dim>;
};
-template<typename T, uint64_t Dim>
-struct meta_schema<schema::FixedArray<T,Dim>> {
+template<typename T, uint64_t... Dim>
+struct meta_schema<schema::FixedArray<T,Dim...>> {
using MetaSchema = schema::Void;
- using Schema = schema::FixedArray<T,Dim>;
+ using Schema = schema::FixedArray<T,Dim...>;
};
}