boostorg / container_hash

Generic hash function for STL style unordered containers
https://boost.org/libs/container_hash
29 stars 39 forks source link

Nonexistent Boost config macro BOOST_NO_CXX11_HDR_MEMORY #10

Closed jefftrull closed 3 years ago

jefftrull commented 3 years ago

An automated search for erroneous macro usage picked this up here and in Wave. There is no such macro because <memory> predates C++11, so the test in extensions.hpp is always true.

mclow commented 3 years ago

Created https://github.com/boostorg/container_hash/pull/11 to address this.

jefftrull commented 3 years ago

Looks like this was resolved.