aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2007-12-11 03:38:03 +0000
committerSteve Naroff <snaroff@apple.com>2007-12-11 03:38:03 +0000
commit9a4ad3702d3a7993b3c662c10c7f438def39f78a (patch)
tree509d89aa29db0404fad6aa3ec2be5651498ae808
parenta924e7c06d4618046a65cc1a584c625e68030934 (diff)
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
-rw-r--r--Sema/SemaExpr.cpp4
1 files changed, 2 insertions, 2 deletions
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;
}