Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Aug 26, 2023
1 parent 3aaa65f commit 1aa3f13
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tst/check.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ check_result::~check_result() noexcept(false)
if (message.empty()) {
message = default_fail_message;
}
// ignore possible exceptions when building message string
// NOLINTNEXTLINE(bugprone-empty-catch)
} catch (...) {
}
throw check_failed(std::move(message), std::move(this->source_location));
Expand Down

0 comments on commit 1aa3f13

Please sign in to comment.