forked from boostorg/unordered
fixed trivial error in #ifdefd-out code
This commit is contained in:
@ -1050,9 +1050,9 @@ private:
|
|||||||
const arrays_info& arrays_,std::size_t pos0,std::size_t hash,
|
const arrays_info& arrays_,std::size_t pos0,std::size_t hash,
|
||||||
Args&&... args)
|
Args&&... args)
|
||||||
{
|
{
|
||||||
auto p=insert_position(arrays_,pos0,hash);
|
auto pn=insert_position(arrays_,pos0,hash);
|
||||||
auto &pos=p.first;
|
auto &pos=pn.first;
|
||||||
auto &n=p.second;
|
auto &n=pn.second;
|
||||||
auto pg=arrays_.groups+pos;
|
auto pg=arrays_.groups+pos;
|
||||||
auto p=arrays_.elements+pos*N+n;
|
auto p=arrays_.elements+pos*N+n;
|
||||||
construct_element(p,std::forward<Args>(args)...);
|
construct_element(p,std::forward<Args>(args)...);
|
||||||
|
Reference in New Issue
Block a user