diff options
| author | Douglas Gregor <dgregor@apple.com> | 2010-02-18 22:27:07 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2010-02-18 22:27:07 +0000 |
| commit | 9773e3d077cbab5e4016f7fdb35e7aa30325a738 (patch) | |
| tree | 949b6d16fc8512354f6935429d9c5c37b1fd87e0 /clang/tools/CIndex/CIndexer.h | |
| parent | 42a7ba7a67fda0a594def3bf1480d07a8aec09d1 (diff) | |
| download | bcm5719-llvm-9773e3d077cbab5e4016f7fdb35e7aa30325a738.tar.gz bcm5719-llvm-9773e3d077cbab5e4016f7fdb35e7aa30325a738.zip | |
Revert my CIndex diagnostic changes (r96603, 96606, 96607), which were
breaking the msvc9 builder for unknown reasons.
llvm-svn: 96618
Diffstat (limited to 'clang/tools/CIndex/CIndexer.h')
| -rw-r--r-- | clang/tools/CIndex/CIndexer.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/clang/tools/CIndex/CIndexer.h b/clang/tools/CIndex/CIndexer.h index 1fa3ca93876..d559f138647 100644 --- a/clang/tools/CIndex/CIndexer.h +++ b/clang/tools/CIndex/CIndexer.h @@ -34,14 +34,11 @@ namespace cxstring { class CIndexer { bool UseExternalASTGeneration; bool OnlyLocalDecls; - bool DisplayDiagnostics; - + llvm::sys::Path ClangPath; public: - CIndexer() - : UseExternalASTGeneration(false), OnlyLocalDecls(false), - DisplayDiagnostics(false) { } + CIndexer() : UseExternalASTGeneration(false), OnlyLocalDecls(false) { } /// \brief Whether we only want to see "local" declarations (that did not /// come from a previous precompiled header). If false, we want to see all @@ -49,11 +46,6 @@ public: bool getOnlyLocalDecls() const { return OnlyLocalDecls; } void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; } - bool getDisplayDiagnostics() const { return DisplayDiagnostics; } - void setDisplayDiagnostics(bool Display = true) { - DisplayDiagnostics = Display; - } - bool getUseExternalASTGeneration() const { return UseExternalASTGeneration; } void setUseExternalASTGeneration(bool Value) { UseExternalASTGeneration = Value; |

