diff options
Diffstat (limited to 'clang/include/clang/Frontend/PreprocessorOutputOptions.h')
-rw-r--r-- | clang/include/clang/Frontend/PreprocessorOutputOptions.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/clang/include/clang/Frontend/PreprocessorOutputOptions.h b/clang/include/clang/Frontend/PreprocessorOutputOptions.h index e375a8545fb..a712a3d1bb0 100644 --- a/clang/include/clang/Frontend/PreprocessorOutputOptions.h +++ b/clang/include/clang/Frontend/PreprocessorOutputOptions.h @@ -10,9 +10,6 @@ #ifndef LLVM_CLANG_FRONTEND_PREPROCESSOROUTPUTOPTIONS_H #define LLVM_CLANG_FRONTEND_PREPROCESSOROUTPUTOPTIONS_H -#include <string> -#include <vector> - namespace clang { /// PreprocessorOutputOptions - Options for controlling the C preprocessor @@ -22,8 +19,8 @@ public: unsigned ShowCPP : 1; ///< Print normal preprocessed output. unsigned ShowMacros : 1; ///< Print macro definitions. unsigned ShowLineMarkers : 1; ///< Show #line markers. - unsigned ShowComments : 1; /// Show comments. - unsigned ShowMacroComments : 1; /// Show comments, even in macros. + unsigned ShowComments : 1; ///< Show comments. + unsigned ShowMacroComments : 1; ///< Show comments, even in macros. public: PreprocessorOutputOptions() { |