aboutsummaryrefslogtreecommitdiff
path: root/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
diff options
context:
space:
mode:
authorJordy Rose <jediknil@belkadan.com>2011-08-17 02:15:41 +0000
committerJordy Rose <jediknil@belkadan.com>2011-08-17 02:15:41 +0000
commit8e240498dfd4355849bcec943e97799f7f75d93d (patch)
treecade412359ea4bcbcfb8625ebdaa3dbd1c931884 /include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
parent01a429a1029dd650ed11cc35160451664f664df3 (diff)
[analyzer] Add some documentation for the new analyzer plugin infrastructure.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/StaticAnalyzer/Core/CheckerOptInfo.h')
-rw-r--r--include/clang/StaticAnalyzer/Core/CheckerOptInfo.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h b/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
index b64fbf2c1f..6ce5b3c509 100644
--- a/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
+++ b/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
@@ -15,6 +15,10 @@
namespace clang {
namespace ento {
+/// Represents a request to include or exclude a checker or package from a
+/// specific analysis run.
+///
+/// \sa CheckerRegistry::initializeManager
class CheckerOptInfo {
StringRef Name;
bool Enable;