boostorg / container

STL-like containers from Boost
http://www.boost.org/libs/container/
Boost Software License 1.0
96 stars 116 forks source link

[1.79] compilation error in boost::container::list with c++0x or higher #216

Closed youngwolf-project closed 2 years ago

youngwolf-project commented 2 years ago

example code:

boost::container::list<std::pair<const char, size_t> > l; l.emplace_back(std::make_pair<const char, size_t>(nullptr, 0));

igaztanaga commented 2 years ago

Thanks for the report, fixed recently when solving #222.