diff options
Diffstat (limited to 'Modules/TestForAnsiForScope.cxx')
-rw-r--r-- | Modules/TestForAnsiForScope.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/TestForAnsiForScope.cxx b/Modules/TestForAnsiForScope.cxx index e8807ab..4bc2c67 100644 --- a/Modules/TestForAnsiForScope.cxx +++ b/Modules/TestForAnsiForScope.cxx @@ -1,7 +1,8 @@ -int main(int, char*[]) +int main(int, char* []) { int i; - for(int i=0; i < 1; ++i); + for (int i = 0; i < 1; ++i) + ; (void)i; return 0; } |