summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticCommentKinds.td
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-05-04 00:47:28 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-05-04 00:47:28 +0000
commitefa78d163214fd9e909ab2bf6911edfbc7a2b9df (patch)
treedb8626b9d3a4fbd0695f0bb9f22c07f56e683eeb /include/clang/Basic/DiagnosticCommentKinds.td
parentc95d413660756c474bc8f97e5b32edc7ddff3850 (diff)
[doc parsing]: Make warning about unknown command
tags off by default for now. Move diagnostic code to DiagnosticCommentKinds.td. // rdar://12381408 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181081 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticCommentKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticCommentKinds.td3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticCommentKinds.td b/include/clang/Basic/DiagnosticCommentKinds.td
index 3880e0e5b4..3df03cdb33 100644
--- a/include/clang/Basic/DiagnosticCommentKinds.td
+++ b/include/clang/Basic/DiagnosticCommentKinds.td
@@ -156,5 +156,8 @@ def warn_verbatim_block_end_without_start : Warning<
"'%select{\\|@}0%1' command does not terminate a verbatim text block">,
InGroup<Documentation>, DefaultIgnore;
+def warn_unknown_comment_command_name : Warning<
+ "unknown command tag name">, InGroup<Documentation>, DefaultIgnore;
+
} // end of documentation issue category
} // end of AST component