Oops. Didn't mean to commit the change to gui/test.cpp. But since I did,

lets remove the linefeeds and make the function look like it gets called.
This commit is contained in:
Kimmo Varis 2009-08-03 01:18:15 +03:00
parent 769119c725
commit a34d6fd2de
1 changed files with 2 additions and 3 deletions

View File

@ -19,8 +19,7 @@ void f(char k)
void possible_style() void possible_style()
{ {
std::list<int>::iterator it; std::list<int>::iterator it;
\n for (it = ab.begin(); it != ab.end(); it++)
for (it = ab.begin(); it != ab.end(); it++)\n
; ;
} }
@ -31,7 +30,7 @@ int main()
if (a); if (a);
b = gets(); b = gets();
f(a); f(a);
iter_err(); possible_style();
} }