From 7df5f30494b7da283164717dea9098c8d9dca77a Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Sun, 11 Jan 2015 13:23:26 +0100 Subject: Renamed RttiBase to RttiType --- test/core/common/RttiTest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/core/common/RttiTest.cpp') diff --git a/test/core/common/RttiTest.cpp b/test/core/common/RttiTest.cpp index e5d7571..36bf48f 100644 --- a/test/core/common/RttiTest.cpp +++ b/test/core/common/RttiTest.cpp @@ -50,13 +50,13 @@ const Rtti Type2("Type2"); const Rtti Type3("Type3", {&Type1}); const Rtti Type4("Type4", {&Type3, &Type2}); const Rtti Type5("Type5", - std::unordered_set{}, + std::unordered_set{}, {&Type6, &Type7}); const Rtti Type6("Type6", - std::unordered_set{}, + std::unordered_set{}, {&Type1}); const Rtti Type7("Type7", {&Type6}, - std::unordered_set{}); + std::unordered_set{}); TEST(Rtti, isa) { @@ -83,7 +83,7 @@ TEST(Rtti, isa) TEST(Rtti, composedOf) { - std::vector types{&Type1, &Type2, &Type3, &Type4}; + std::vector types{&Type1, &Type2, &Type3, &Type4}; for (auto t : types) { ASSERT_FALSE(t->composedOf(Type1)); ASSERT_FALSE(t->composedOf(Type2)); -- cgit v1.2.3