logic: fixed recording type of rvalue reference as "&&" instead of "&"

This commit is contained in:
mlangkabel
2017-10-12 13:10:12 +02:00
parent b5ff43a821
commit 91fc0f4148
37 changed files with 569 additions and 561 deletions
+1 -1
View File
@@ -1400,7 +1400,7 @@ public:
TS_ASSERT(utility::containsElement<std::string>(client->methods, "public void TestClass::TestClass() <1:7 <1:7 1:15> 1:15>"));
TS_ASSERT(utility::containsElement<std::string>(client->methods, "public void TestClass::TestClass(const TestClass &) <1:7 <1:7 1:15> 1:15>"));
TS_ASSERT(utility::containsElement<std::string>(client->methods, "public void TestClass::TestClass(TestClass &) <1:7 1:15>"));
TS_ASSERT(utility::containsElement<std::string>(client->methods, "public void TestClass::TestClass(TestClass &&) <1:7 1:15>"));
}
///////////////////////////////////////////////////////////////////////////////