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 724f676 commit 4361dbeCopy full SHA for 4361dbe
.clang-tidy
@@ -87,4 +87,8 @@ CheckOptions:
87
value: 100
88
- key: readability-function-cognitive-complexity.IgnoreMacros
89
value: true
90
+ - key: cppcoreguidelines-rvalue-reference-param-not-moved.AllowPartialMove
91
+ value: true
92
+ - key: bugprone-empty-catch.IgnoreCatchWithKeywords
93
+ value: "@todo;@fixme;exception ignored on purpose"
94
...
src/node-persistent-cache.cpp
@@ -55,6 +55,7 @@ node_persistent_cache::~node_persistent_cache() noexcept
55
try {
56
log_debug("Removing persistent node cache at '{}'.", m_file_name);
57
} catch (...) {
58
+ // exception ignored on purpose
59
}
60
unlink(m_file_name.c_str());
61
0 commit comments