]> granicus.if.org Git - clang/commitdiff
Comment parsing: recognize more Doxygen commands
authorDmitri Gribenko <gribozavr@gmail.com>
Wed, 12 Sep 2012 17:02:40 +0000 (17:02 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Wed, 12 Sep 2012 17:02:40 +0000 (17:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163723 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/CommentCommands.td

index 16ce4fca1b3d417d92d4f2100604b8ba3c50d19b..7238b535b3e00d7db2ccf29221ce4ce09ad001d7 100644 (file)
@@ -73,10 +73,23 @@ def Tparam : BlockCommand<"tparam"> { let IsTParamCommand = 1; }
 // 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">;