Skip to content

Commit 8170d3d

Browse files
committed
clang-tidy: Suppress bugprone-empty-catch check warning
See: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/empty-catch.html
1 parent c068596 commit 8170d3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/mp/util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ struct DestructorCatcher
157157
{
158158
}
159159
~DestructorCatcher() noexcept try {
160-
} catch (const kj::Exception& e) {
160+
} catch (const kj::Exception& e) { // NOLINT(bugprone-empty-catch)
161161
}
162162
};
163163

0 commit comments

Comments
 (0)