aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/CFRefCount.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-03-11 23:43:16 +0000
committerTed Kremenek <kremenek@apple.com>2009-03-11 23:43:16 +0000
commitd3ad531dd43ddf11fdb32deb112e0f116296c693 (patch)
tree7d0b5bef102addf7e8260116875dc1587894b182 /lib/Analysis/CFRefCount.cpp
parent32a47ed1f58c88dbc99fbe6ed76e07cafed6479a (diff)
Remove '[naming convention]' from bug type.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66739 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r--lib/Analysis/CFRefCount.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index 550410d66b..75a9f3dca1 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -2373,13 +2373,13 @@ void CFRefCount::RegisterChecks(BugReporter& BR) {
const char* name = 0;
if (isGCEnabled())
- name = "[naming convention] leak of returned object (GC)";
+ name = "leak of returned object (GC)";
else if (getLangOptions().getGCMode() == LangOptions::HybridGC)
name = "[naming convention] leak of returned object (hybrid MM, "
"non-GC)";
else {
assert(getLangOptions().getGCMode() == LangOptions::NonGC);
- name = "[naming convention] leak of returned object";
+ name = "leak of returned object";
}
leakAtReturn = new LeakAtReturn(this, name);