From: Dmitri Gribenko Date: Sat, 15 Sep 2012 21:33:50 +0000 (+0000) Subject: Comment parsing: support \namespace like other commands that contain just a X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19ec962baba4bd332cb4dd83b3cfb67e33ea2b4c;p=clang Comment parsing: support \namespace like other commands that contain just a declaration for the entity being documented. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163986 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/CommentCommands.td b/include/clang/AST/CommentCommands.td index f2a6744c95..ced9e9ef7f 100644 --- a/include/clang/AST/CommentCommands.td +++ b/include/clang/AST/CommentCommands.td @@ -128,11 +128,12 @@ def Subpage : VerbatimLineCommand<"subpage">; def Ref : VerbatimLineCommand<"ref">; // Doxygen commands. -def Fn : DeclarationVerbatimLineCommand<"fn">; -def Var : DeclarationVerbatimLineCommand<"var">; -def Property : DeclarationVerbatimLineCommand<"property">; -def Typedef : DeclarationVerbatimLineCommand<"typedef">; -def Overload : DeclarationVerbatimLineCommand<"overload">; +def Fn : DeclarationVerbatimLineCommand<"fn">; +def Namespace : DeclarationVerbatimLineCommand<"namespace">; +def Overload : DeclarationVerbatimLineCommand<"overload">; +def Property : DeclarationVerbatimLineCommand<"property">; +def Typedef : DeclarationVerbatimLineCommand<"typedef">; +def Var : DeclarationVerbatimLineCommand<"var">; // HeaderDoc commands. def Class : DeclarationVerbatimLineCommand<"class">;