diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-01-21 00:08:17 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-01-21 00:08:17 +0000 |
commit | 481683955a28dc5e373d4c380c4737bf3ad51f1c (patch) | |
tree | ab4e7ddae4e4e142f2a5dd275e1535357a68d68d | |
parent | f7c43fdd28d4963a16291cb6b000ed955f044262 (diff) |
Fixes comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94053 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Sema/SemaOverload.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Sema/SemaOverload.cpp b/lib/Sema/SemaOverload.cpp index 7b0c98c569..9d0958c46e 100644 --- a/lib/Sema/SemaOverload.cpp +++ b/lib/Sema/SemaOverload.cpp @@ -1143,7 +1143,7 @@ bool Sema::isObjCPointerConversion(QualType FromType, QualType ToType, ToPointeeType = ToCPtr->getPointeeType(); else if (const BlockPointerType *ToBlockPtr = ToType->getAs<BlockPointerType>()) { - // Objective C++: We're able to convert from a pointer to an any object + // Objective C++: We're able to convert from a pointer to any object // to a block pointer type. if (FromObjCPtr && FromObjCPtr->isObjCBuiltinType()) { ConvertedType = ToType; @@ -1154,7 +1154,7 @@ bool Sema::isObjCPointerConversion(QualType FromType, QualType ToType, else if (FromType->getAs<BlockPointerType>() && ToObjCPtr && ToObjCPtr->isObjCBuiltinType()) { // Objective C++: We're able to convert from a block pointer type to a - // pointer to an any object. + // pointer to any object. ConvertedType = ToType; return true; } |