We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a75460 commit 2aa714bCopy full SHA for 2aa714b
power_grid_model_c/power_grid_model/include/power_grid_model/common/multi_threaded_logging.hpp
@@ -27,8 +27,8 @@ class MultiThreadedLoggerImpl : public MultiThreadedLogger {
27
~ThreadLogger() noexcept override {
28
try {
29
sync();
30
- } catch (...) {
31
- // NOSONAR // we can't sync so we need to drop
+ } catch (...) { // NOLINT(bugprone-empty-catch) // NOSONAR
+ // we can't sync so we need to ignore the error
32
}
33
34
void sync() const { parent_->sync(*this); }
0 commit comments