From: Ted Kremenek Date: Fri, 3 Apr 2009 21:10:31 +0000 (+0000) Subject: Sentence-case bug type. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9dab0ed04e946bf3089042c2d97f6d9ee075c067;p=clang Sentence-case bug type. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68406 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index 4473dbf086..859e6cad1f 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -2366,7 +2366,7 @@ namespace { class VISIBILITY_HIDDEN UseAfterRelease : public CFRefBug { public: UseAfterRelease(CFRefCount* tf) - : CFRefBug(tf, "use-after-release") {} + : CFRefBug(tf, "Use-after-release") {} const char* getDescription() const { return "Reference-counted object is used after it is released";