Skip to content

Commit bb19161

Browse files
committed
add nolint bugprone-empty-catch
1 parent 7c16fe2 commit bb19161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/Exception.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ try
280280
LOG_ERROR(getLogger("~Exception"), "{}", getExceptionMessage(*this, /*with_stacktrace=*/ true));
281281
}
282282
}
283-
catch (...)
283+
catch (...) // NOLINT(bugprone-empty-catch)
284284
{
285285
}
286286

0 commit comments

Comments
 (0)