boostorg / unordered

Boost.org unordered module
http://boost.org/libs/unordered
Boost Software License 1.0
62 stars 55 forks source link

missing #include in `boost::unordered_map` (regression) #231

Closed joaquintides closed 6 months ago

joaquintides commented 7 months ago

The following fails to compile in VS 2022 with Boost 1.84 and default configuration parameters:

#include <boost/unordered_map.hpp>

int main()
{
  boost::unordered_map<int,int> m;
  m.emplace(0,0); // error C2039: 'forward_as_tuple': is not a member of 'std'
}

This is a regression with respect to Boost 1.83.

joaquintides commented 6 months ago

Fixed in: