Merge pull request #6 from andrascii/develop

Fixed compiler guards for use of `std::unary_function` for C++17 compliance
This commit is contained in:
Marshall Clow
2019-08-12 23:14:49 -07:00
committed by GitHub

View File

@@ -119,7 +119,7 @@ namespace boost
{ {
namespace hash_detail namespace hash_detail
{ {
#if defined(_HAS_AUTO_PTR_ETC) && !_HAS_AUTO_PTR_ETC #if defined(BOOST_NO_CXX98_FUNCTION_BASE)
template <typename T> template <typename T>
struct hash_base struct hash_base
{ {