From: Dmitri Gribenko Date: Wed, 12 Sep 2012 17:02:40 +0000 (+0000) Subject: Comment parsing: recognize more Doxygen commands X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0841a07498af164a9702f943ab2f517e23eecc77;p=clang Comment parsing: recognize more Doxygen commands git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163723 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/CommentCommands.td b/include/clang/AST/CommentCommands.td index 16ce4fca1b..7238b535b3 100644 --- a/include/clang/AST/CommentCommands.td +++ b/include/clang/AST/CommentCommands.td @@ -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">;