diff options
-rw-r--r-- | Modules/CMakeCompilerABI.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/CMakeCompilerABI.h b/Modules/CMakeCompilerABI.h index ad481d6..1f9abb1 100644 --- a/Modules/CMakeCompilerABI.h +++ b/Modules/CMakeCompilerABI.h @@ -2,10 +2,11 @@ /* Size of a pointer-to-data in bytes. */ #define SIZEOF_DPTR (sizeof(void*)) const char info_sizeof_dptr[] = { + /* clang-format off */ 'I', 'N', 'F', 'O', ':', 's', 'i', 'z', 'e', 'o', 'f', '_', 'd', 'p', 't', 'r', '[', ('0' + ((SIZEOF_DPTR / 10) % 10)), ('0' + (SIZEOF_DPTR % 10)), ']', '\0' - /* clang-format needs this comment to break after the opening brace */ + /* clang-format on */ }; /* Application Binary Interface. */ |