Skip to content

Commit 60fe74a

Browse files
committed
Fix shadowing warning
1 parent 6c8f351 commit 60fe74a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/boost/interprocess/detail/segment_manager_helper.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,8 @@ struct intrusive_compare_key
410410
{
411411
typedef CharT char_type;
412412

413-
intrusive_compare_key(const CharT* str, std::size_t len)
414-
: mp_str(str), m_len(len)
413+
intrusive_compare_key(const CharT* str_, std::size_t len_)
414+
: mp_str(str_), m_len(len_)
415415
{}
416416

417417
const CharT* str() const

0 commit comments

Comments
 (0)