summaryrefslogtreecommitdiff
path: root/modules/codec/c++/schema_meta.hpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-09-10 20:39:21 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-09-10 20:39:21 +0200
commita4456ca179fe154cfd797225c16d4baf011abaee (patch)
tree44ae471923121e3f85bbd8ef1258cd16a77d07bf /modules/codec/c++/schema_meta.hpp
parent6b761abbee4361571bd74e3deda9370ad94bd470 (diff)
Changing return types on data functions
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...>;
};
}