diff options
Diffstat (limited to 'Tests/CxxOnly/cxxonly.cxx')
-rw-r--r-- | Tests/CxxOnly/cxxonly.cxx | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Tests/CxxOnly/cxxonly.cxx b/Tests/CxxOnly/cxxonly.cxx index 9cf6f2d..0911a07 100644 --- a/Tests/CxxOnly/cxxonly.cxx +++ b/Tests/CxxOnly/cxxonly.cxx @@ -6,20 +6,18 @@ extern int testCPP; #include <stdio.h> -int main () +int main() { #ifdef _MSC_VER testCPP = 1; #endif - if ( LibCxx1Class::Method() != 2.0 ) - { + if (LibCxx1Class::Method() != 2.0) { printf("Problem with libcxx1\n"); return 1; - } - if ( LibCxx2Class::Method() != 1.0 ) - { + } + if (LibCxx2Class::Method() != 1.0) { printf("Problem with libcxx2\n"); return 1; - } + } return 0; } |