From: Steve Naroff Date: Tue, 11 Dec 2007 03:38:03 +0000 (+0000) Subject: Avoid the first person in a recently added comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a4ad3702d3a7993b3c662c10c7f438def39f78a;p=clang Avoid the first person in a recently added comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44843 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Sema/SemaExpr.cpp b/Sema/SemaExpr.cpp index 5cf2745c98..808da1e55b 100644 --- a/Sema/SemaExpr.cpp +++ b/Sema/SemaExpr.cpp @@ -2303,8 +2303,8 @@ Sema::ExprResult Sema::ActOnInstanceMessage( if (ObjcImplementationDecl *ImpDecl = ObjcImplementations[ClassDecl->getIdentifier()]) Method = ImpDecl->lookupInstanceMethod(Sel); - // If we still haven't found a method, look in the global pool. - // I am not fond of this behavior, however we conform to what gcc does. + // If we still haven't found a method, look in the global pool. This + // behavior isn't very desirable, however we need it for GCC compatibility. if (!Method) Method = InstanceMethodPool[Sel].Method; }