From 36797a97ef566e322bf4faa9515b9eb10a2bcbe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 7 Jan 2012 09:37:38 +0100 Subject: [PATCH] Symbol database: Fixed comments --- test/testsymboldatabase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testsymboldatabase.cpp b/test/testsymboldatabase.cpp index b57834970..8e8e3a3da 100644 --- a/test/testsymboldatabase.cpp +++ b/test/testsymboldatabase.cpp @@ -679,7 +679,7 @@ private: ASSERT_EQUALS("X", scope->className); - // The class has a constructor but the implementation is not seen + // The class has a constructor but the implementation _is not_ seen ASSERT_EQUALS(1U, scope->functionList.size()); const Function *function = &(scope->functionList.front()); ASSERT_EQUALS(false, function->hasBody); @@ -709,7 +709,7 @@ private: ASSERT_EQUALS("X", scope->className); - // The class has a constructor but the implementation is not seen + // The class has a constructor and the implementation _is_ seen ASSERT_EQUALS(1U, scope->functionList.size()); const Function *function = &(scope->functionList.front()); ASSERT_EQUALS("X", function->tokenDef->str());