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 f971b71 commit b3b1055Copy full SHA for b3b1055
src/params.hpp
@@ -54,6 +54,7 @@ class params_t
54
m_map.insert_or_assign(std::forward<K>(key), value);
55
}
56
57
+ // NOLINTBEGIN(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
58
template <typename K, typename V,
59
std::enable_if_t<std::is_integral_v<std::remove_reference_t<V>>,
60
bool> = true>
@@ -71,6 +72,7 @@ class params_t
71
72
{
73
m_map.insert_or_assign(std::forward<K>(key), std::string(value));
74
75
+ // NOLINTEND(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
76
77
template <typename K>
78
void remove(K &&key)
0 commit comments