diff options
-rw-r--r-- | include/clang/Basic/DiagnosticFrontendKinds.td | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticFrontendKinds.td b/include/clang/Basic/DiagnosticFrontendKinds.td index 920aa36c44..7ca1f30bb1 100644 --- a/include/clang/Basic/DiagnosticFrontendKinds.td +++ b/include/clang/Basic/DiagnosticFrontendKinds.td @@ -294,7 +294,8 @@ def warn_unknown_warning_specifier : Warning< def warn_unknown_analyzer_checker : Warning< "no analyzer checkers are associated with '%0'">; def warn_incompatible_analyzer_plugin_api : Warning< - "checker plugin '%0' is not compatible with this version of the analyzer">; + "checker plugin '%0' is not compatible with this version of the analyzer">, + InGroup<DiagGroup<"analyzer-incompatible-plugin"> >; def note_incompatible_analyzer_plugin_api : Note< "current API version is '%0', but plugin was compiled with version '%1'">; } |