mirror of
https://github.com/nlohmann/json.git
synced 2025-07-29 23:01:16 +03:00
Fix Clang-Tidy warnings (#4047)
This commit is contained in:
2
tests/thirdparty/fifo_map/fifo_map.hpp
vendored
2
tests/thirdparty/fifo_map/fifo_map.hpp
vendored
@ -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);
|
||||
|
Reference in New Issue
Block a user