mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-08 18:37:11 +00:00
[clang-tidy] Count errors in ClangTidyDiagnosticConsumer
This re-applies r222363 reverted in r222390 after compilation errors in our out-of-tree clang-tidy tests were fixed. llvm-svn: 222427
This commit is contained in:
parent
a0bffc0c11
commit
fc1dafba60
@ -277,6 +277,9 @@ void ClangTidyDiagnosticConsumer::finalizeLastError() {
|
||||
|
||||
void ClangTidyDiagnosticConsumer::HandleDiagnostic(
|
||||
DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) {
|
||||
// Count warnings/errors.
|
||||
DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
|
||||
|
||||
if (DiagLevel == DiagnosticsEngine::Note) {
|
||||
assert(!Errors.empty() &&
|
||||
"A diagnostic note can only be appended to a message.");
|
||||
|
@ -6,7 +6,7 @@ struct A {
|
||||
virtual void f() {}
|
||||
virtual void g() {}
|
||||
};
|
||||
// CHECK-NOT: warning
|
||||
// CHECK-NOT: warning:
|
||||
struct B : public A {
|
||||
void placeholder_for_f() {}
|
||||
// CHECK-SANITY: [[@LINE-1]]:8: warning: Annotate this
|
||||
|
Loading…
x
Reference in New Issue
Block a user