From: <bl...@us...> - 2002-12-25 22:40:54
|
Update of /cvsroot/cpptool/rfta/src/rfta In directory sc8-pr-cvs1:/tmp/cvs-serv32632/src/rfta Modified Files: CodeWriterTest.cpp Log Message: * spaces are now allowed around the if condition Index: CodeWriterTest.cpp =================================================================== RCS file: /cvsroot/cpptool/rfta/src/rfta/CodeWriterTest.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CodeWriterTest.cpp 25 Dec 2002 12:13:56 -0000 1.2 --- CodeWriterTest.cpp 25 Dec 2002 22:40:51 -0000 1.3 *************** *** 61,65 **** { source_ = "{" ! " if (true)" " return;" "}"; --- 61,65 ---- { source_ = "{" ! " if ( true )" " return;" "}"; *************** *** 80,84 **** std::string expectedSource = "{" ! " if (false)" " return;" "}"; --- 80,84 ---- std::string expectedSource = "{" ! " if ( false )" " return;" "}"; |