diff options
author | Kitware Robot <kwrobot@kitware.com> | 2016-05-16 14:34:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-05-16 20:05:19 (GMT) |
commit | d9fd2f5402eeaa345691313658e02b51038f570b (patch) | |
tree | dca71b9a7e267f4c6300da3eb770415381726785 /Tests/CompileOptions | |
parent | 82df6deaafb36cbbfd450202bb20b320f637751a (diff) | |
download | CMake-d9fd2f5402eeaa345691313658e02b51038f570b.zip CMake-d9fd2f5402eeaa345691313658e02b51038f570b.tar.gz CMake-d9fd2f5402eeaa345691313658e02b51038f570b.tar.bz2 |
Revise C++ coding style using clang-format
Run the `Utilities/Scripts/clang-format.bash` script to update
all our C++ code to a new style defined by `.clang-format`.
Use `clang-format` version 3.8.
* If you reached this commit for a line in `git blame`, re-run the blame
operation starting at the parent of this commit to see older history
for the content.
* See the parent commit for instructions to rebase a change across this
style transition commit.
Diffstat (limited to 'Tests/CompileOptions')
-rw-r--r-- | Tests/CompileOptions/main.cpp | 24 | ||||
-rw-r--r-- | Tests/CompileOptions/other.cpp | 1 |
2 files changed, 14 insertions, 11 deletions
diff --git a/Tests/CompileOptions/main.cpp b/Tests/CompileOptions/main.cpp index f3c1355..63a0480 100644 --- a/Tests/CompileOptions/main.cpp +++ b/Tests/CompileOptions/main.cpp @@ -1,15 +1,15 @@ #ifndef TEST_DEFINE -# error Expected definition TEST_DEFINE +#error Expected definition TEST_DEFINE #endif #ifndef NEEDS_ESCAPE -# error Expected definition NEEDS_ESCAPE +#error Expected definition NEEDS_ESCAPE #endif #ifdef DO_GNU_TESTS -# ifndef TEST_DEFINE_GNU -# error Expected definition TEST_DEFINE_GNU -# endif +#ifndef TEST_DEFINE_GNU +#error Expected definition TEST_DEFINE_GNU +#endif #endif #include <string.h> @@ -18,10 +18,14 @@ int main() { return (strcmp(NEEDS_ESCAPE, "E$CAPE") == 0 #ifdef TEST_OCTOTHORPE - && strcmp(TEST_OCTOTHORPE, "#") == 0 + && strcmp(TEST_OCTOTHORPE, "#") == 0 #endif - && strcmp(EXPECTED_C_COMPILER_VERSION, TEST_C_COMPILER_VERSION) == 0 - && strcmp(EXPECTED_CXX_COMPILER_VERSION, TEST_CXX_COMPILER_VERSION) == 0 - && TEST_C_COMPILER_VERSION_EQUALITY == 1 - && TEST_CXX_COMPILER_VERSION_EQUALITY == 1) ? 0 : 1; + && + strcmp(EXPECTED_C_COMPILER_VERSION, TEST_C_COMPILER_VERSION) == 0 && + strcmp(EXPECTED_CXX_COMPILER_VERSION, TEST_CXX_COMPILER_VERSION) == + 0 && + TEST_C_COMPILER_VERSION_EQUALITY == 1 && + TEST_CXX_COMPILER_VERSION_EQUALITY == 1) + ? 0 + : 1; } diff --git a/Tests/CompileOptions/other.cpp b/Tests/CompileOptions/other.cpp index 0e34375..7d75e37 100644 --- a/Tests/CompileOptions/other.cpp +++ b/Tests/CompileOptions/other.cpp @@ -1,5 +1,4 @@ void foo(void) { - } |