Skip to content

Commit

Permalink
💚 fix Clang-Tidy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Jun 6, 2023
1 parent 65589f9 commit ad05d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/thirdparty/fifo_map/fifo_map.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ad05d9f

Please sign in to comment.