diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-28 02:49:14 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-08-28 02:49:14 +0000 |
commit | 4364fcf0267838c9a3615f34c5f8f0cd542ae407 (patch) | |
tree | 27be5e823469ac25424856e1b8ddb0fdb8b0f205 | |
parent | 679c73cb33bca3738781322c39f0d0de66354322 (diff) | |
download | bcm5719-llvm-4364fcf0267838c9a3615f34c5f8f0cd542ae407.tar.gz bcm5719-llvm-4364fcf0267838c9a3615f34c5f8f0cd542ae407.zip |
Fix a -Wdocumentation warning.
llvm-svn: 162730
-rw-r--r-- | clang/lib/AST/ASTContext.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp index d94ad42b3c0..0c2cc1c6171 100644 --- a/clang/lib/AST/ASTContext.cpp +++ b/clang/lib/AST/ASTContext.cpp @@ -5800,7 +5800,7 @@ ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto, return false; } -/// QualifiedIdConformsQualifiedId - compare id<p,...> with id<p1,...> +/// QualifiedIdConformsQualifiedId - compare id<pr,...> with id<pr1,...> /// return true if lhs's protocols conform to rhs's protocol; false /// otherwise. bool ASTContext::QualifiedIdConformsQualifiedId(QualType lhs, QualType rhs) { @@ -5809,8 +5809,8 @@ bool ASTContext::QualifiedIdConformsQualifiedId(QualType lhs, QualType rhs) { return false; } -/// ObjCQualifiedClassTypesAreCompatible - compare Class<p,...> and -/// Class<p1, ...>. +/// ObjCQualifiedClassTypesAreCompatible - compare Class<pr,...> and +/// Class<pr1, ...>. bool ASTContext::ObjCQualifiedClassTypesAreCompatible(QualType lhs, QualType rhs) { const ObjCObjectPointerType *lhsQID = lhs->getAs<ObjCObjectPointerType>(); |