From 1d8c0f91f88eead2415511a01e93f8d34bc00f39 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Sat, 18 Mar 2023 09:53:17 +0100 Subject: [PATCH] avoided name hiding --- include/boost/unordered/detail/foa/concurrent_table.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/unordered/detail/foa/concurrent_table.hpp b/include/boost/unordered/detail/foa/concurrent_table.hpp index 1989da78..f1519dfc 100644 --- a/include/boost/unordered/detail/foa/concurrent_table.hpp +++ b/include/boost/unordered/detail/foa/concurrent_table.hpp @@ -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