diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/model/Typesystem.cpp | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/src/core/model/Typesystem.cpp b/src/core/model/Typesystem.cpp index 24be67f..2945635 100644 --- a/src/core/model/Typesystem.cpp +++ b/src/core/model/Typesystem.cpp @@ -450,11 +450,12 @@ const Rtti<model::UnknownType> UnknownType{"UnknownType", {&Type}};  const Rtti<model::Constant> Constant{"Constant", {&Node}};  const Rtti<model::Attribute> Attribute{"Attribute", {&Node}};  const Rtti<model::Typesystem> Typesystem{ -    "Typesystem", {&Node}, {&StructType, &EnumType, &Constant}}; -const Rtti<model::SystemTypesystem> SystemTypesystem{ -    "SystemTypesystem", -    {&Typesystem}, -    {&StringType, &IntType, &DoubleType, &BoolType, &EnumType}}; +    "Typesystem", +    {&Node}, +    {&StringType, &IntType, &DoubleType, &BoolType, &EnumType, &StructType, +     &Constant}}; +const Rtti<model::SystemTypesystem> SystemTypesystem{"SystemTypesystem", +                                                     {&Typesystem}};  }  }  | 
