We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
bugprone-exception-escape
1 parent 92bd214 commit 275fdd2Copy full SHA for 275fdd2
1 file changed
lib/utils.h
@@ -54,6 +54,7 @@ struct SelectMapValues {
54
struct OnExit {
55
std::function<void()> f;
56
57
+ // NOLINTNEXTLINE(bugprone-exception-escape) - reported with libc++ for any files which includes this (even if not used)
58
~OnExit() {
59
f();
60
}
0 commit comments