Fixed compiler error introduced recently.

This commit is contained in:
PKEuS 2012-08-22 16:41:11 +02:00
parent 7c8da17c44
commit 6364f43b7a
1 changed files with 1 additions and 1 deletions

View File

@ -5835,7 +5835,7 @@ private:
" int a = 123;\n"
" a >>= -1;\n"
"}");
ASSERT_EQUALS("[test.cpp:4]: (error) Shifting by a negative value.\n", errout.str());s
ASSERT_EQUALS("[test.cpp:4]: (error) Shifting by a negative value.\n", errout.str());
}
};