diff options
Diffstat (limited to 'Tests/SubProject')
-rw-r--r-- | Tests/SubProject/car.cxx | 4 | ||||
-rw-r--r-- | Tests/SubProject/foo/foo.cxx | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/Tests/SubProject/car.cxx b/Tests/SubProject/car.cxx index 95de4a3..cc3a4e0 100644 --- a/Tests/SubProject/car.cxx +++ b/Tests/SubProject/car.cxx @@ -1,6 +1,6 @@ int main(int ac, char** av) { - (void) ac; - (void) av; + (void)ac; + (void)av; return 0; } diff --git a/Tests/SubProject/foo/foo.cxx b/Tests/SubProject/foo/foo.cxx index 68fa363..50cd9e4 100644 --- a/Tests/SubProject/foo/foo.cxx +++ b/Tests/SubProject/foo/foo.cxx @@ -7,9 +7,8 @@ int main(int ac, char** av) (void)av; int ret = bar(); printf("bar = %d\n", ret); - if(ret == 10) - { + if (ret == 10) { return 0; - } + } return -1; } |