aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/PreprocessorOutputOptions.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-11 21:43:12 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-11 21:43:12 +0000
commit0e0bae8139e25de81f18b6a519783a06f7ba1e25 (patch)
tree6db23099da5baf15ef2612359f918b8bb651dde5 /include/clang/Frontend/PreprocessorOutputOptions.h
parent4f92032ebad80711ee99cfea6946a61b4b9d08be (diff)
Add DependencyOutputOptions to wrap -M... options, and propogate to
CompilerInvocation and clang-cc. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PreprocessorOutputOptions.h')
-rw-r--r--include/clang/Frontend/PreprocessorOutputOptions.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/clang/Frontend/PreprocessorOutputOptions.h b/include/clang/Frontend/PreprocessorOutputOptions.h
index e375a8545f..a712a3d1bb 100644
--- a/include/clang/Frontend/PreprocessorOutputOptions.h
+++ b/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() {