Old TODO comment removed

This commit is contained in:
Reijo Tomperi 2008-12-13 20:45:48 +00:00
parent 1d401905b0
commit 9c9740821f
1 changed files with 0 additions and 1 deletions

View File

@ -239,7 +239,6 @@ private:
std::ostringstream ostr;
for (const TOKEN *tok = tokenizer.tokens(); tok; tok = tok->next())
ostr << " " << tok->str();
// TODO, the actual string should be " void f ( ) { int a ; a = 10 ; if ( true ) ; }"
ASSERT_EQUALS( std::string(" void f ( ) { int a = 10 ; if ( 10 ) ; }"), ostr.str() );
}