[cfe-commits] r158422 - in /cfe/trunk: include/clang/AST/ include/clang/Basic/ include/clang/Frontend/ include/clang/Lex/ include/clang/Sema/ include/clang/Serialization/ lib/CodeGen/ lib/Frontend/
James Dennett
jdennett at google.com
Thu Jun 14 16:22:09 PDT 2012
On Thu, Jun 14, 2012 at 3:44 PM, Richard Smith <richard at metafoo.co.uk> wrote:
> Well, if you're doing cleanups... ;)
And how...
> On Wed, Jun 13, 2012 at 3:07 PM, James Dennett <jdennett at google.com> wrote:
>> Author: jdennett
>> Date: Wed Jun 13 17:07:09 2012
>> New Revision: 158422
>>
>> URL: http://llvm.org/viewvc/llvm-project?rev=158422&view=rev
>> Log:
>> More doxygen/documentation cleanups.
> [...]
>> Modified: cfe/trunk/include/clang/AST/ASTContext.h
>> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=158422&r1=158421&r2=158422&view=diff
>> ==============================================================================
>> --- cfe/trunk/include/clang/AST/ASTContext.h (original)
>> +++ cfe/trunk/include/clang/AST/ASTContext.h Wed Jun 13 17:07:09 2012
>> @@ -1705,7 +1705,7 @@
>> /// \brief Get the implementation of ObjCCategoryDecl, or NULL if none exists.
>> ObjCCategoryImplDecl *getObjCImplementation(ObjCCategoryDecl *D);
>>
>> - /// \brief returns true if there is at lease one @implementation in TU.
>> + /// \brief returns true if there is at lease one \@implementation in TU.
>
> *least
Thanks. Fixed locally, I'll submit that in the near future.
>> bool AnyObjCImplementation() {
>> return !ObjCImpls.empty();
>> }
>>
>> Modified: cfe/trunk/include/clang/AST/ExprCXX.h
>> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ExprCXX.h?rev=158422&r1=158421&r2=158422&view=diff
>> ==============================================================================
>> --- cfe/trunk/include/clang/AST/ExprCXX.h (original)
>> +++ cfe/trunk/include/clang/AST/ExprCXX.h Wed Jun 13 17:07:09 2012
>> @@ -2228,7 +2228,7 @@
>>
>>
>> /// \brief A reference to an overloaded function set, either an
>> -/// \t UnresolvedLookupExpr or an \t UnresolvedMemberExpr.
>> +/// \c UnresolvedLookupExpr or an \c UnresolvedMemberExpr.
>> class OverloadExpr : public Expr {
>> /// The common name of these declarations.
>> DeclarationNameInfo NameInfo;
>>
>> Modified: cfe/trunk/include/clang/AST/ExprObjC.h
>> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ExprObjC.h?rev=158422&r1=158421&r2=158422&view=diff
>> ==============================================================================
>> --- cfe/trunk/include/clang/AST/ExprObjC.h (original)
>> +++ cfe/trunk/include/clang/AST/ExprObjC.h Wed Jun 13 17:07:09 2012
>> @@ -378,7 +378,7 @@
>> child_range children() { return child_range(); }
>> };
>>
>> -/// ObjCSelectorExpr used for @selector in Objective-C.
>> +/// ObjCSelectorExpr used for \@selector in Objective-C.
>> class ObjCSelectorExpr : public Expr {
>> Selector SelName;
>> SourceLocation AtLoc, RParenLoc;
>>
>> Modified: cfe/trunk/include/clang/AST/StmtObjC.h
>> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/StmtObjC.h?rev=158422&r1=158421&r2=158422&view=diff
>> ==============================================================================
>> --- cfe/trunk/include/clang/AST/StmtObjC.h (original)
>> +++ cfe/trunk/include/clang/AST/StmtObjC.h Wed Jun 13 17:07:09 2012
>> @@ -70,7 +70,7 @@
>> }
>> };
>>
>> -/// ObjCAtCatchStmt - This represents objective-c's @catch statement.
>> +/// ObjCAtCatchStmt - This represents objective-c's \@catch statement.
>
> *Objective-C
:-) That was already part of my next batch.
>> class ObjCAtCatchStmt : public Stmt {
>> private:
>> VarDecl *ExceptionDecl;
>> @@ -118,7 +118,7 @@
>> child_range children() { return child_range(&Body, &Body + 1); }
>> };
>>
>> -/// ObjCAtFinallyStmt - This represent objective-c's @finally Statement
>> +/// ObjCAtFinallyStmt - This represent objective-c's \@finally Statement
>
> *Objective-C
Had that one too...
> *statement
...also done now, thanks for pointing it out.
More information about the cfe-commits
mailing list