diff options
Diffstat (limited to 'lib/c++')
| -rw-r--r-- | lib/c++/descriptor.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/c++/descriptor.hpp b/lib/c++/descriptor.hpp index 034c9ce..2ba2c97 100644 --- a/lib/c++/descriptor.hpp +++ b/lib/c++/descriptor.hpp @@ -38,14 +38,15 @@ struct CellField< > { using Descriptor = Desc; using Schema = CellField<Desc,Struct<Member<CellFieldTypes,CellFieldNames>...>>; - using MetaSchema = FixedArray<schema::UInt64,Desc::D>; + using MetaSchema = FixedArray<UInt64,Desc::D>; }; template<typename Desc, typename... CellFieldMembers> struct CellFieldStruct { using Schema = CellFieldStruct<Desc, Struct<CellFieldMembers...>>; using InnerSchema = Struct<CellFieldMembers...>; - using MetaSchema = FixedArray<UInt64, Desc::D>; + using MetaSchema = typename InnerSchema::MetaSchema; + // using MetaSchema = FixedArray<UInt64, Desc::D>; }; } |
