From: Argyrios Kyrtzidis Date: Tue, 24 Jun 2008 11:23:36 +0000 (+0000) Subject: Move the namespace action declarations at the "C++ declarations" section. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d8ac9a8b13609a4881f69ab40e64cbe20929d0a;p=clang Move the namespace action declarations at the "C++ declarations" section. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52673 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index a8069872df..86339977ff 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -133,20 +133,6 @@ public: return Group; } - /// ActOnStartNamespaceDef - This is called at the start of a namespace - /// definition. - virtual DeclTy *ActOnStartNamespaceDef(Scope *S, SourceLocation IdentLoc, - IdentifierInfo *Ident, - SourceLocation LBrace) { - return 0; - } - - /// ActOnFinishNamespaceDef - This callback is called after a namespace is - /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef. - virtual void ActOnFinishNamespaceDef(DeclTy *Dcl,SourceLocation RBrace) { - return; - } - /// ActOnStartOfFunctionDef - This is called at the start of a function /// definition, instead of calling ActOnDeclarator. The Declarator includes /// information about formal arguments that are part of this function. @@ -537,6 +523,21 @@ public: } //===------------------------- C++ Declarations -------------------------===// + + /// ActOnStartNamespaceDef - This is called at the start of a namespace + /// definition. + virtual DeclTy *ActOnStartNamespaceDef(Scope *S, SourceLocation IdentLoc, + IdentifierInfo *Ident, + SourceLocation LBrace) { + return 0; + } + + /// ActOnFinishNamespaceDef - This callback is called after a namespace is + /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef. + virtual void ActOnFinishNamespaceDef(DeclTy *Dcl,SourceLocation RBrace) { + return; + } + /// ActOnParamDefaultArgument - Parse default argument for function parameter virtual void ActOnParamDefaultArgument(DeclTy *param, SourceLocation EqualLoc,