diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-09-20 04:23:38 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-09-20 04:23:38 +0000 |
commit | 8c036c7f77d69f96df49219ed0bdbade200d52eb (patch) | |
tree | 42a60273cdaf9151779429a5e169ecd21a06afd5 /lib/Analysis/GRExprEngineInternalChecks.cpp | |
parent | 82bae3f6bf7bc4733d9c87659b266e23ad55f420 (diff) |
Add "category" to BugTypes, allowing bugs to be grouped.
Changed casing of many bug names. The convention will be to have bug names (mostly) lower cased, and categories use some capitalization.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56385 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngineInternalChecks.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngineInternalChecks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngineInternalChecks.cpp b/lib/Analysis/GRExprEngineInternalChecks.cpp index 0c5f078e56..92c448cb2f 100644 --- a/lib/Analysis/GRExprEngineInternalChecks.cpp +++ b/lib/Analysis/GRExprEngineInternalChecks.cpp @@ -293,7 +293,7 @@ class VISIBILITY_HIDDEN CheckAttrNonNull : public GRSimpleAPICheck { public: CheckAttrNonNull() : - BT("'nonnull' argument passed null", + BT("'nonnull' argument passed null", "API", "Null pointer passed as an argument to a 'nonnull' parameter") {} virtual bool Audit(ExplodedNode<GRState>* N, GRStateManager& VMgr) { |