From d55c9565abd10ad0cd009c0dde23188943047572 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 10 Jan 2018 09:58:08 +0000 Subject: [PATCH] No template arguments in BOOST_MOVABLE_BUT_NOT_COPYABLE Was causing errors on Visual C++ 7.1. --- include/boost/unordered/detail/implementation.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/implementation.hpp b/include/boost/unordered/detail/implementation.hpp index e26f353b..48ef9beb 100644 --- a/include/boost/unordered/detail/implementation.hpp +++ b/include/boost/unordered/detail/implementation.hpp @@ -801,7 +801,7 @@ namespace boost { template class optional { - BOOST_MOVABLE_BUT_NOT_COPYABLE(optional) + BOOST_MOVABLE_BUT_NOT_COPYABLE(optional) boost::unordered::detail::value_base value_; bool has_value_;