diff options
Diffstat (limited to 'clang-tools-extra/test/modularize/Inputs/InconsistentSubHeader.h')
-rw-r--r-- | clang-tools-extra/test/modularize/Inputs/InconsistentSubHeader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/test/modularize/Inputs/InconsistentSubHeader.h b/clang-tools-extra/test/modularize/Inputs/InconsistentSubHeader.h index f87ea655295..ab02b2504b8 100644 --- a/clang-tools-extra/test/modularize/Inputs/InconsistentSubHeader.h +++ b/clang-tools-extra/test/modularize/Inputs/InconsistentSubHeader.h @@ -1,11 +1,11 @@ // Set up so TypeInt only defined during InconsistentHeader1.h include. #ifdef SYMBOL1 #define SYMBOL 1 -#define FUNC_STYLE(a, b) a||b +#define FUNC_STYLE(a, b) a || b #endif #ifdef SYMBOL2 #define SYMBOL 2 -#define FUNC_STYLE(a, b) a&&b +#define FUNC_STYLE(a, b) a &&b #endif #if SYMBOL == 1 |