forked from boostorg/unordered
avoided name hiding
This commit is contained in:
committed by
Christian Mazakas
parent
25ba8e4dfc
commit
1d8c0f91f8
@ -579,9 +579,9 @@ private:
|
|||||||
|
|
||||||
std::size_t unprotected_size()const
|
std::size_t unprotected_size()const
|
||||||
{
|
{
|
||||||
std::size_t ml_=this->ml;
|
std::size_t m=this->ml;
|
||||||
std::size_t size_=this->size_;
|
std::size_t s=this->size_;
|
||||||
return size_<=ml_?size_:ml_;
|
return s<=m?s:m;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct erase_on_exit
|
struct erase_on_exit
|
||||||
|
Reference in New Issue
Block a user