diff options
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r-- | lib/Analysis/CFRefCount.cpp | 4 |
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); |