[cfe-commits] r163723 - /cfe/trunk/include/clang/AST/CommentCommands.td

Dmitri Gribenko gribozavr at gmail.com
Wed Sep 12 10:02:40 PDT 2012


Author: gribozavr
Date: Wed Sep 12 12:02:40 2012
New Revision: 163723

URL: http://llvm.org/viewvc/llvm-project?rev=163723&view=rev
Log:
Comment parsing: recognize more Doxygen commands

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=163723&r1=163722&r2=163723&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/CommentCommands.td (original)
+++ cfe/trunk/include/clang/AST/CommentCommands.td Wed Sep 12 12:02:40 2012
@@ -73,10 +73,23 @@
 // HeaderDoc
 def Templatefield : BlockCommand<"templatefield"> { let IsTParamCommand = 1; }
 
-def Author  : BlockCommand<"author">;
-def Authors : BlockCommand<"authors">;
-def Pre     : BlockCommand<"pre">;
-def Post    : BlockCommand<"post">;
+def Author     : BlockCommand<"author">;
+def Authors    : BlockCommand<"authors">;
+def Bug        : BlockCommand<"bug">;
+def Copyright  : BlockCommand<"copyright">;
+def Date       : BlockCommand<"date">;
+def Details    : BlockCommand<"details">;
+def Note       : BlockCommand<"note">;
+def Post       : BlockCommand<"post">;
+def Pre        : BlockCommand<"pre">;
+def Remark     : BlockCommand<"remark">;
+def Remarks    : BlockCommand<"remarks">;
+def Sa         : BlockCommand<"sa">;
+def See        : BlockCommand<"see">;
+def Since      : BlockCommand<"since">;
+def Todo       : BlockCommand<"todo">;
+def Version    : BlockCommand<"version">;
+def Warning    : BlockCommand<"warning">;
 
 defm Code      : VerbatimBlockCommand<"code", "endcode">;
 defm Verbatim  : VerbatimBlockCommand<"verbatim", "endverbatim">;





More information about the cfe-commits mailing list