diff options
| -rw-r--r-- | clang-tools-extra/modularize/Modularize.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/clang-tools-extra/modularize/Modularize.cpp b/clang-tools-extra/modularize/Modularize.cpp index 1eef5e3fdcb..823165bb58d 100644 --- a/clang-tools-extra/modularize/Modularize.cpp +++ b/clang-tools-extra/modularize/Modularize.cpp @@ -50,26 +50,26 @@ // expressions, and preprocessor conditional directives that evaluate // inconsistently, and can produce error messages like the following: // -// (...)/SubHeader.h:11:5:
-// #if SYMBOL == 1
-// ^
-// error: Macro instance 'SYMBOL' has different values in this header,
-// depending on how it was included.
-// 'SYMBOL' expanded to: '1' with respect to these inclusion paths:
-// (...)/Header1.h
-// (...)/SubHeader.h
-// (...)/SubHeader.h:3:9:
-// #define SYMBOL 1
-// ^
-// Macro defined here.
-// 'SYMBOL' expanded to: '2' with respect to these inclusion paths:
-// (...)/Header2.h
-// (...)/SubHeader.h
-// (...)/SubHeader.h:7:9:
-// #define SYMBOL 2
-// ^
-// Macro defined here.
-//
+// (...)/SubHeader.h:11:5: +// #if SYMBOL == 1 +// ^ +// error: Macro instance 'SYMBOL' has different values in this header, +// depending on how it was included. +// 'SYMBOL' expanded to: '1' with respect to these inclusion paths: +// (...)/Header1.h +// (...)/SubHeader.h +// (...)/SubHeader.h:3:9: +// #define SYMBOL 1 +// ^ +// Macro defined here. +// 'SYMBOL' expanded to: '2' with respect to these inclusion paths: +// (...)/Header2.h +// (...)/SubHeader.h +// (...)/SubHeader.h:7:9: +// #define SYMBOL 2 +// ^ +// Macro defined here. +// // See PreprocessorTracker.cpp for additional details. // // Current problems: |

