]> granicus.if.org Git - clang/commitdiff
Avoid the first person in a recently added comment.
authorSteve Naroff <snaroff@apple.com>
Tue, 11 Dec 2007 03:38:03 +0000 (03:38 +0000)
committerSteve Naroff <snaroff@apple.com>
Tue, 11 Dec 2007 03:38:03 +0000 (03:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44843 91177308-0d34-0410-b5e6-96231b3b80d8

Sema/SemaExpr.cpp

index 5cf2745c98010db65a5f95284ca5a482c6cd2980..808da1e55bcf73ec7565f1c432fd1dfb8cbe71b2 100644 (file)
@@ -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;
     }