mirror of
https://github.com/boostorg/unordered.git
synced 2025-05-12 14:01:43 +00:00
avoided name hiding
This commit is contained in:
parent
25ba8e4dfc
commit
1d8c0f91f8
@ -579,9 +579,9 @@ private:
|
||||
|
||||
std::size_t unprotected_size()const
|
||||
{
|
||||
std::size_t ml_=this->ml;
|
||||
std::size_t size_=this->size_;
|
||||
return size_<=ml_?size_:ml_;
|
||||
std::size_t m=this->ml;
|
||||
std::size_t s=this->size_;
|
||||
return s<=m?s:m;
|
||||
}
|
||||
|
||||
struct erase_on_exit
|
||||
|
Loading…
x
Reference in New Issue
Block a user