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 c22e3dc commit f2d5253Copy full SHA for f2d5253
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