aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/AnalysisConsumer.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-12 00:24:10 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-12 00:24:10 +0000
commit5746f1ff6286f5e5bd7fc28e5e2031f18e4676c9 (patch)
tree0d9a3f5886d4bac9f279278644f1dfa9c5a07831 /include/clang/Frontend/AnalysisConsumer.h
parentc8d8ac5f454311d0154d2d080196cc150edbb2d6 (diff)
Move AnalyzerOptions into CompilerInvocation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/AnalysisConsumer.h')
-rw-r--r--include/clang/Frontend/AnalysisConsumer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/clang/Frontend/AnalysisConsumer.h b/include/clang/Frontend/AnalysisConsumer.h
index 34054a7aa0..cb08ce2251 100644
--- a/include/clang/Frontend/AnalysisConsumer.h
+++ b/include/clang/Frontend/AnalysisConsumer.h
@@ -12,6 +12,9 @@
//
//===----------------------------------------------------------------------===//
+#ifndef LLVM_CLANG_FRONTEND_ANALYSISCONSUMER_H
+#define LLVM_CLANG_FRONTEND_ANALYSISCONSUMER_H
+
#include <string>
#include <vector>
@@ -73,3 +76,5 @@ ASTConsumer* CreateAnalysisConsumer(const Preprocessor &pp,
const AnalyzerOptions& Opts);
}
+
+#endif