aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-09-15 21:33:50 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-09-15 21:33:50 +0000
commit19ec962baba4bd332cb4dd83b3cfb67e33ea2b4c (patch)
treefea70812afdbeedf12e69ad57cb63c8df5c2428c
parentec504e0d677594fe975e29b25d6d47be54038baf (diff)
Comment parsing: support \namespace like other commands that contain just a
declaration for the entity being documented. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163986 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/CommentCommands.td11
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">;