From fdc39982f3f77be5d03781c972953e507bd52d0f Mon Sep 17 00:00:00 2001 From: joaquintides Date: Thu, 29 Sep 2022 10:49:27 +0200 Subject: [PATCH] fixed trivial error in #ifdefd-out code --- include/boost/unordered/detail/foa.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 2ad8e575..7ee1ccbe 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1050,9 +1050,9 @@ private: const arrays_info& arrays_,std::size_t pos0,std::size_t hash, Args&&... args) { - auto p=insert_position(arrays_,pos0,hash); - auto &pos=p.first; - auto &n=p.second; + auto pn=insert_position(arrays_,pos0,hash); + auto &pos=pn.first; + auto &n=pn.second; auto pg=arrays_.groups+pos; auto p=arrays_.elements+pos*N+n; construct_element(p,std::forward(args)...);