summaryrefslogtreecommitdiffstats
path: root/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
diff options
context:
space:
mode:
authorArtem Dergachev <artem.dergachev@gmail.com>2017-05-03 11:47:13 +0000
committerArtem Dergachev <artem.dergachev@gmail.com>2017-05-03 11:47:13 +0000
commitd14025acfe64e146bb5f7323c556d11d4d58fb72 (patch)
tree0dacc4aff6cbac22c5a78305376d0f47b08987cd /lib/StaticAnalyzer/Core/CommonBugCategories.cpp
parent5e7b77cefc611842a4dda7c8368c4ebc37b79ece (diff)
[analyzer] Fix memory error bug category capitalization.
It was written as "Memory Error" in most places and as "Memory error" in a few other places, however it is the latter that is more consistent with other categories (such as "Logic error"). rdar://problem/31718115 Differential Revision: https://reviews.llvm.org/D32702 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@302016 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/CommonBugCategories.cpp')
-rw-r--r--lib/StaticAnalyzer/Core/CommonBugCategories.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/StaticAnalyzer/Core/CommonBugCategories.cpp b/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
index 3cb9323563..421dfa48c9 100644
--- a/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
+++ b/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
@@ -16,5 +16,6 @@ const char * const CoreFoundationObjectiveC = "Core Foundation/Objective-C";
const char * const LogicError = "Logic error";
const char * const MemoryCoreFoundationObjectiveC =
"Memory (Core Foundation/Objective-C)";
+const char * const MemoryError = "Memory error";
const char * const UnixAPI = "Unix API";
}}}