💚 fix Clang-Tidy warnings

This commit is contained in:
Niels Lohmann 2023-06-06 21:20:23 +02:00
parent 65589f9941
commit ad05d9f123
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -300,7 +300,7 @@ template <
/// insert value
template<class P>
std::pair<iterator, bool> insert( P&& value )
std::pair<iterator, bool> insert( P&& value ) // NOLINT(cppcoreguidelines-missing-std-forward)
{
m_compare.add_key(value.first);
return m_map.insert(value);