[cfe-commits] r163986 - /cfe/trunk/include/clang/AST/CommentCommands.td
Dmitri Gribenko
gribozavr at gmail.com
Sat Sep 15 14:33:50 PDT 2012
Author: gribozavr
Date: Sat Sep 15 16:33:50 2012
New Revision: 163986
URL: http://llvm.org/viewvc/llvm-project?rev=163986&view=rev
Log:
Comment parsing: support \namespace like other commands that contain just a
declaration for the entity being documented.
Modified:
cfe/trunk/include/clang/AST/CommentCommands.td
Modified: cfe/trunk/include/clang/AST/CommentCommands.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/CommentCommands.td?rev=163986&r1=163985&r2=163986&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/CommentCommands.td (original)
+++ cfe/trunk/include/clang/AST/CommentCommands.td Sat Sep 15 16:33:50 2012
@@ -128,11 +128,12 @@
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">;
More information about the cfe-commits
mailing list