From 2840b19fb3baf2a268b2bc9cc950e015e5d284ed Mon Sep 17 00:00:00 2001 From: Ettl Martin Date: Thu, 19 Apr 2012 10:15:29 +0200 Subject: [PATCH] removed some c++-comments within testcases ( from my last commit ). No functional change. --- test/testunusedvar.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/testunusedvar.cpp b/test/testunusedvar.cpp index dd29e716a..b0aecd9a0 100644 --- a/test/testunusedvar.cpp +++ b/test/testunusedvar.cpp @@ -1433,7 +1433,6 @@ private: "extern void SomeTestFunc(float);\n" "void MyFuncNoError()\n" "{\n" - " //flip around floatB and g_float and the message does not appear\n" " const float floatB = 2.2f;\n" " const float floatTot = floatB * g_float;\n" " SomeTestFunc(floatTot);\n" @@ -1444,13 +1443,11 @@ private: "extern void SomeTestFunc(float);\n" "void MyFuncNoError2()\n" "{\n" - " //change floatTot to non-const and the message does not appear\n" " const float floatC = 2.2f; \n" " float floatTot = g_float * floatC;\n" " SomeTestFunc(floatTot);\n" "}\n"); ASSERT_EQUALS("", errout.str()); - } void localvaralias1() {