Skip to content

Commit

Permalink
Merge pull request #233 from k3DW/wshadow
Browse files Browse the repository at this point in the history
Fix shadowing warning in GCC4.9
  • Loading branch information
igaztanaga authored Sep 29, 2024
2 parents 5e6e09e + 60fe74a commit 4bec5d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/interprocess/detail/segment_manager_helper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,8 @@ struct intrusive_compare_key
{
typedef CharT char_type;

intrusive_compare_key(const CharT* str, std::size_t len)
: mp_str(str), m_len(len)
intrusive_compare_key(const CharT* str_, std::size_t len_)
: mp_str(str_), m_len(len_)
{}

const CharT* str() const
Expand Down

0 comments on commit 4bec5d1

Please sign in to comment.