From: Dmitri Gribenko Date: Tue, 28 Aug 2012 02:49:14 +0000 (+0000) Subject: Fix a -Wdocumentation warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c3b8a3ed28c52dc56d3a1b9670d71e5f7070c62;p=clang Fix a -Wdocumentation warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162730 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index d94ad42b3c..0c2cc1c617 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -5800,7 +5800,7 @@ ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto, return false; } -/// QualifiedIdConformsQualifiedId - compare id with id +/// QualifiedIdConformsQualifiedId - compare id with id /// 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 and -/// Class. +/// ObjCQualifiedClassTypesAreCompatible - compare Class and +/// Class. bool ASTContext::ObjCQualifiedClassTypesAreCompatible(QualType lhs, QualType rhs) { const ObjCObjectPointerType *lhsQID = lhs->getAs();