From 4a85d662012360fecffc9b0e58a582204f631957 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Tue, 17 Jun 2025 14:41:12 +0200 Subject: Rewriting parts to avoid infinite recursion in flat index call --- modules/codec/c++/schema_meta.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/codec/c++/schema_meta.hpp') diff --git a/modules/codec/c++/schema_meta.hpp b/modules/codec/c++/schema_meta.hpp index 659250c..ff66bbb 100644 --- a/modules/codec/c++/schema_meta.hpp +++ b/modules/codec/c++/schema_meta.hpp @@ -74,12 +74,14 @@ struct meta_schema { */ template struct meta_schema> { + // TODO Technically this should be a FixedArray of the inner meta schema, except when the inner meta schema is Void using MetaSchema = schema::FixedArray; using Schema = schema::Array; }; template struct meta_schema> { + // TODO Technically this should be a FixedArray of the inner meta schema, except when the inner meta schema is Void using MetaSchema = schema::Void; using Schema = schema::FixedArray; }; -- cgit v1.2.3