From 156a29815fd2fb6a19e8d4864aaef75c8f2aacac Mon Sep 17 00:00:00 2001 From: Martin Ettl Date: Thu, 3 Jun 2010 12:55:56 +0200 Subject: [PATCH] removed a wrong const declaration --- test/testclass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testclass.cpp b/test/testclass.cpp index c3b9a19b2..ace1d0de5 100644 --- a/test/testclass.cpp +++ b/test/testclass.cpp @@ -3456,7 +3456,7 @@ private: checkConst("class A{\n" "public:\n" "A(){m_strVal="";}\n" - "const std::string strGetString1() const\n" + "const std::string strGetString1()\n" "{return m_strVal.c_str();}\n" "private:\n" "std::string m_strVal;\n"