diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
commit | 66382c62af1be515deff66d51dba7f27e5fe4937 (patch) | |
tree | cdd661a560ef1f766889d661d8c7561d18bfbabb /test/core/managed/ManagedTest.cpp | |
parent | 7d788f2dce18c3ba6f11f7f032d35fef2e5fa9d4 (diff) |
Renamed RttiType to Rtti
Diffstat (limited to 'test/core/managed/ManagedTest.cpp')
-rw-r--r-- | test/core/managed/ManagedTest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/core/managed/ManagedTest.cpp b/test/core/managed/ManagedTest.cpp index b5a6e64..c2b19cf 100644 --- a/test/core/managed/ManagedTest.cpp +++ b/test/core/managed/ManagedTest.cpp @@ -77,10 +77,10 @@ class TypeTestManaged5 : public Managed { using Managed::Managed; }; -static const RttiType Type1 = RttiBuilder<TypeTestManaged1>("Type1"); -static const RttiType Type2 = RttiBuilder<TypeTestManaged2>("Type2"); -static const RttiType Type3 = RttiBuilder<TypeTestManaged3>("Type3").parent(&Type1); -static const RttiType Type4 = +static const Rtti Type1 = RttiBuilder<TypeTestManaged1>("Type1"); +static const Rtti Type2 = RttiBuilder<TypeTestManaged2>("Type2"); +static const Rtti Type3 = RttiBuilder<TypeTestManaged3>("Type3").parent(&Type1); +static const Rtti Type4 = RttiBuilder<TypeTestManaged4>("Type4").parent({&Type3, &Type2}); TEST(Managed, type) |