diff --git a/testtokenize.cpp b/testtokenize.cpp index 0e7f287af..571f34663 100644 --- a/testtokenize.cpp +++ b/testtokenize.cpp @@ -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() ); }