avoided name hiding

This commit is contained in:
joaquintides 2023-03-18 09:53:17 +01:00 committed by Christian Mazakas
parent 25ba8e4dfc
commit 1d8c0f91f8

View File

@ -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