]> granicus.if.org Git - clang/commitdiff
Comment parsing: support \namespace like other commands that contain just a
authorDmitri Gribenko <gribozavr@gmail.com>
Sat, 15 Sep 2012 21:33:50 +0000 (21:33 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Sat, 15 Sep 2012 21:33:50 +0000 (21:33 +0000)
declaration for the entity being documented.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163986 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/CommentCommands.td

index f2a6744c95886ade3127811f29afbc7d4708d11d..ced9e9ef7f956ea6611d616bcdfffe0e5fa2d2ae 100644 (file)
@@ -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">;