From: Fariborz Jahanian Date: Thu, 30 May 2013 21:52:50 +0000 (+0000) Subject: fixes a comment in my last patch. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=639aa529211c266c83546c3047bdb428e9c7a87c;p=clang fixes a comment in my last patch. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182966 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaDeclObjC.cpp b/lib/Sema/SemaDeclObjC.cpp index 58ea014784..f1ce4bce5f 100644 --- a/lib/Sema/SemaDeclObjC.cpp +++ b/lib/Sema/SemaDeclObjC.cpp @@ -2310,7 +2310,7 @@ void Sema::DiagnoseMismatchedMethodsInGlobalPool() { // first, instance methods ObjCMethodList &InstMethList = b->second.first; HelperToDiagnoseMismatchedMethodsInGlobalPool(*this, InstMethList); - // second, instance methods + // second, class methods ObjCMethodList &ClsMethList = b->second.second; HelperToDiagnoseMismatchedMethodsInGlobalPool(*this, ClsMethList); }