aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/PreprocessorOutputOptions.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-02-02 15:41:17 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-02-02 15:41:17 +0000
commiteef63e0997e0f6d6436736ea919b851cfe34955a (patch)
tree0dd2610dd740420ce8dd5c06dc793b2131e050ba /include/clang/Frontend/PreprocessorOutputOptions.h
parent469a1eb996e1cb0be54f9b210f836afbddcbb2cc (diff)
Frontend: Factor out header include dumping (-H) into its own preprocessor
callbacks class. - Aside from being generally cleaner, this also allows -H to work correctly in modes other than standard preprocessing (e.g., -c, -MM, etc.) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124723 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PreprocessorOutputOptions.h')
-rw-r--r--include/clang/Frontend/PreprocessorOutputOptions.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/clang/Frontend/PreprocessorOutputOptions.h b/include/clang/Frontend/PreprocessorOutputOptions.h
index 82517c51d1..1eda0d4027 100644
--- a/include/clang/Frontend/PreprocessorOutputOptions.h
+++ b/include/clang/Frontend/PreprocessorOutputOptions.h
@@ -18,7 +18,6 @@ class PreprocessorOutputOptions {
public:
unsigned ShowCPP : 1; ///< Print normal preprocessed output.
unsigned ShowComments : 1; ///< Show comments.
- unsigned ShowHeaderIncludes : 1; ///< Show header inclusions (-H).
unsigned ShowLineMarkers : 1; ///< Show #line markers.
unsigned ShowMacroComments : 1; ///< Show comments, even in macros.
unsigned ShowMacros : 1; ///< Print macro definitions.
@@ -27,7 +26,6 @@ public:
PreprocessorOutputOptions() {
ShowCPP = 1;
ShowComments = 0;
- ShowHeaderIncludes = 0;
ShowLineMarkers = 1;
ShowMacroComments = 0;
ShowMacros = 0;