mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 18:09:42 -05:00
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.
This commit is contained in:
@@ -7,29 +7,38 @@
|
||||
#error Expect CMAKE_IS=Fun definition
|
||||
#endif
|
||||
|
||||
|
||||
template<bool test>
|
||||
template <bool test>
|
||||
struct CMakeStaticAssert;
|
||||
|
||||
template<>
|
||||
struct CMakeStaticAssert<true> {};
|
||||
template <>
|
||||
struct CMakeStaticAssert<true>
|
||||
{
|
||||
};
|
||||
|
||||
static const char fun_string[] = CMAKE_IS_;
|
||||
#ifndef NO_SPACES_IN_DEFINE_VALUES
|
||||
static const char very_fun_string[] = CMAKE_IS_REALLY;
|
||||
#endif
|
||||
|
||||
enum {
|
||||
StringLiteralTest1 = sizeof(CMakeStaticAssert<sizeof(CMAKE_IS_) == sizeof("Fun")>),
|
||||
enum
|
||||
{
|
||||
StringLiteralTest1 =
|
||||
sizeof(CMakeStaticAssert<sizeof(CMAKE_IS_) == sizeof("Fun")>),
|
||||
#ifndef NO_SPACES_IN_DEFINE_VALUES
|
||||
StringLiteralTest2 = sizeof(CMakeStaticAssert<sizeof(CMAKE_IS_REALLY) == sizeof("Very Fun")>),
|
||||
StringLiteralTest2 =
|
||||
sizeof(CMakeStaticAssert<sizeof(CMAKE_IS_REALLY) == sizeof("Very Fun")>),
|
||||
#endif
|
||||
#ifdef TEST_GENERATOR_EXPRESSIONS
|
||||
StringLiteralTest3 = sizeof(CMakeStaticAssert<sizeof(LETTER_LIST1) == sizeof("A,B,C,D")>),
|
||||
StringLiteralTest4 = sizeof(CMakeStaticAssert<sizeof(LETTER_LIST2) == sizeof("A,,B,,C,,D")>),
|
||||
StringLiteralTest5 = sizeof(CMakeStaticAssert<sizeof(LETTER_LIST3) == sizeof("A,-B,-C,-D")>),
|
||||
StringLiteralTest6 = sizeof(CMakeStaticAssert<sizeof(LETTER_LIST4) == sizeof("A-,-B-,-C-,-D")>),
|
||||
StringLiteralTest7 = sizeof(CMakeStaticAssert<sizeof(LETTER_LIST5) == sizeof("A-,B-,C-,D")>)
|
||||
StringLiteralTest3 =
|
||||
sizeof(CMakeStaticAssert<sizeof(LETTER_LIST1) == sizeof("A,B,C,D")>),
|
||||
StringLiteralTest4 =
|
||||
sizeof(CMakeStaticAssert<sizeof(LETTER_LIST2) == sizeof("A,,B,,C,,D")>),
|
||||
StringLiteralTest5 =
|
||||
sizeof(CMakeStaticAssert<sizeof(LETTER_LIST3) == sizeof("A,-B,-C,-D")>),
|
||||
StringLiteralTest6 =
|
||||
sizeof(CMakeStaticAssert<sizeof(LETTER_LIST4) == sizeof("A-,-B-,-C-,-D")>),
|
||||
StringLiteralTest7 =
|
||||
sizeof(CMakeStaticAssert<sizeof(LETTER_LIST5) == sizeof("A-,B-,C-,D")>)
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -70,35 +79,34 @@ enum {
|
||||
#error Unexpected LINK_LANGUAGE_IS_C
|
||||
#endif
|
||||
|
||||
|
||||
// TEST_GENERATOR_EXPRESSIONS
|
||||
#endif
|
||||
|
||||
#ifndef BUILD_IS_DEBUG
|
||||
# error "BUILD_IS_DEBUG not defined!"
|
||||
#error "BUILD_IS_DEBUG not defined!"
|
||||
#endif
|
||||
#ifndef BUILD_IS_NOT_DEBUG
|
||||
# error "BUILD_IS_NOT_DEBUG not defined!"
|
||||
#error "BUILD_IS_NOT_DEBUG not defined!"
|
||||
#endif
|
||||
|
||||
// Check per-config definitions.
|
||||
#ifdef TEST_CONFIG_DEBUG
|
||||
# if !BUILD_IS_DEBUG
|
||||
# error "BUILD_IS_DEBUG false with TEST_CONFIG_DEBUG!"
|
||||
# endif
|
||||
# if BUILD_IS_NOT_DEBUG
|
||||
# error "BUILD_IS_NOT_DEBUG true with TEST_CONFIG_DEBUG!"
|
||||
# endif
|
||||
#if !BUILD_IS_DEBUG
|
||||
#error "BUILD_IS_DEBUG false with TEST_CONFIG_DEBUG!"
|
||||
#endif
|
||||
#if BUILD_IS_NOT_DEBUG
|
||||
#error "BUILD_IS_NOT_DEBUG true with TEST_CONFIG_DEBUG!"
|
||||
#endif
|
||||
#else
|
||||
# if BUILD_IS_DEBUG
|
||||
# error "BUILD_IS_DEBUG true without TEST_CONFIG_DEBUG!"
|
||||
# endif
|
||||
# if !BUILD_IS_NOT_DEBUG
|
||||
# error "BUILD_IS_NOT_DEBUG false without TEST_CONFIG_DEBUG!"
|
||||
# endif
|
||||
#if BUILD_IS_DEBUG
|
||||
#error "BUILD_IS_DEBUG true without TEST_CONFIG_DEBUG!"
|
||||
#endif
|
||||
#if !BUILD_IS_NOT_DEBUG
|
||||
#error "BUILD_IS_NOT_DEBUG false without TEST_CONFIG_DEBUG!"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
int main(int argc, char **argv)
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user