Fix a couple of Doxygen issues pointed out by -Wdocumentation.

llvm-svn: 163722
This commit is contained in:
Dmitri Gribenko 2012-09-12 17:01:48 +00:00
parent 881929c1b6
commit 00bcdd3192
4 changed files with 6 additions and 6 deletions

View File

@ -557,13 +557,13 @@ public:
SourceLocation getStartOfMainFileID(); SourceLocation getStartOfMainFileID();
SourceLocation getEndOfPreambleFileID(); SourceLocation getEndOfPreambleFileID();
/// \brief \see mapLocationFromPreamble. /// \see mapLocationFromPreamble.
SourceRange mapRangeFromPreamble(SourceRange R) { SourceRange mapRangeFromPreamble(SourceRange R) {
return SourceRange(mapLocationFromPreamble(R.getBegin()), return SourceRange(mapLocationFromPreamble(R.getBegin()),
mapLocationFromPreamble(R.getEnd())); mapLocationFromPreamble(R.getEnd()));
} }
/// \brief \see mapLocationToPreamble. /// \see mapLocationToPreamble.
SourceRange mapRangeToPreamble(SourceRange R) { SourceRange mapRangeToPreamble(SourceRange R) {
return SourceRange(mapLocationToPreamble(R.getBegin()), return SourceRange(mapLocationToPreamble(R.getBegin()),
mapLocationToPreamble(R.getEnd())); mapLocationToPreamble(R.getEnd()));

View File

@ -2134,7 +2134,7 @@ ExprResult Parser::ParseObjCAtExpression(SourceLocation AtLoc) {
} }
} }
/// \brirg Parse the receiver of an Objective-C++ message send. /// \brief Parse the receiver of an Objective-C++ message send.
/// ///
/// This routine parses the receiver of a message send in /// This routine parses the receiver of a message send in
/// Objective-C++ either as a type or as an expression. Note that this /// Objective-C++ either as a type or as an expression. Note that this
@ -2743,7 +2743,7 @@ ExprResult Parser::ParseObjCDictionaryLiteral(SourceLocation AtLoc) {
} }
/// objc-encode-expression: /// objc-encode-expression:
/// @encode ( type-name ) /// \@encode ( type-name )
ExprResult ExprResult
Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) { Parser::ParseObjCEncodeExpression(SourceLocation AtLoc) {
assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!"); assert(Tok.isObjCAtKeyword(tok::objc_encode) && "Not an @encode expression!");

View File

@ -205,7 +205,7 @@ namespace {
bool captureSetValueAsResult) = 0; bool captureSetValueAsResult) = 0;
}; };
/// A PseudoOpBuilder for Objective-C @properties. /// A PseudoOpBuilder for Objective-C \@properties.
class ObjCPropertyOpBuilder : public PseudoOpBuilder { class ObjCPropertyOpBuilder : public PseudoOpBuilder {
ObjCPropertyRefExpr *RefExpr; ObjCPropertyRefExpr *RefExpr;
ObjCPropertyRefExpr *SyntacticRefExpr; ObjCPropertyRefExpr *SyntacticRefExpr;

View File

@ -769,7 +769,7 @@ namespace {
/// instantiating it. /// instantiating it.
Decl *TransformDefinition(SourceLocation Loc, Decl *D); Decl *TransformDefinition(SourceLocation Loc, Decl *D);
/// \bried Transform the first qualifier within a scope by instantiating the /// \brief Transform the first qualifier within a scope by instantiating the
/// declaration. /// declaration.
NamedDecl *TransformFirstQualifierInScope(NamedDecl *D, SourceLocation Loc); NamedDecl *TransformFirstQualifierInScope(NamedDecl *D, SourceLocation Loc);