diff options
-rw-r--r-- | include/clang/AST/CommentCommands.td | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/clang/AST/CommentCommands.td b/include/clang/AST/CommentCommands.td index f2a6744c95..ced9e9ef7f 100644 --- a/include/clang/AST/CommentCommands.td +++ b/include/clang/AST/CommentCommands.td @@ -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">; |