use spaces in strings

This commit is contained in:
XhmikosR 2013-04-09 10:49:58 +03:00 committed by PKEuS
parent c487ea843d
commit 700512a53f
2 changed files with 2 additions and 2 deletions

View File

@ -2608,7 +2608,7 @@ private:
check("class Pool{\n"
" int* GetNewObj()\n"
" {\n"
" return new int;\n"
" return new int;\n"
" }\n"
"};\n"
"void foo(){\n"

View File

@ -7113,7 +7113,7 @@ private:
" int x;\n"
" x = 1;\n"
" if (y)\n" // <-- cppcheck does not know anything about 'y'
" x = 2;\n"
" x = 2;\n"
" return x + 1;\n"
"}");
ASSERT_EQUALS("", errout.str());