astyle fix

This commit is contained in:
Reijo Tomperi 2009-11-17 22:15:25 +02:00
parent a3a3ff4349
commit bd2ca8babd
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ private:
{
// ticket #970
const char code[] = "if (a >= (unsigned)(b)) {}";
const char expected[] ="if ( a >= ( int ) b ) { }";
const char expected[] = "if ( a >= ( int ) b ) { }";
ASSERT_EQUALS(expected, tokenizeAndStringify(code, true));
}