diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2013-05-03 23:15:20 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-05-03 23:15:20 +0000 |
commit | ad6fd9f93ce0d328397e8d57ef7117ced24fc8e2 (patch) | |
tree | ff65aa9339d215a60b3a59212e7795cc6fcec093 /include/clang/Basic | |
parent | cc2b653c319599f502425d2c3de29865d47bb9e4 (diff) |
[Doc parsing] Provide diagnostics for unknown documentation
commands. // rdar://12381408
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic')
-rw-r--r-- | include/clang/Basic/DiagnosticLexKinds.td | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticLexKinds.td b/include/clang/Basic/DiagnosticLexKinds.td index 548823f1f0..fb0ab3c1a4 100644 --- a/include/clang/Basic/DiagnosticLexKinds.td +++ b/include/clang/Basic/DiagnosticLexKinds.td @@ -27,6 +27,10 @@ def backslash_newline_space : Warning< "backslash and newline separated by space">, InGroup<DiagGroup<"backslash-newline-escape">>; +// comment parsing +def warn_unknown_comment_command_name : Warning< + "unknown command tag name">, InGroup<DiagGroup<"comment-command-tag">>; + // Digraphs. def warn_cxx98_compat_less_colon_colon : Warning< "'<::' is treated as digraph '<:' (aka '[') followed by ':' in C++98">, @@ -586,4 +590,4 @@ def warn_uncovered_module_header : Warning< def err_expected_id_building_module : Error< "expected a module name in '__building_module' expression">; -} +}
\ No newline at end of file |