From ac51b5b6d217870f49270d02836905ed529cda89 Mon Sep 17 00:00:00 2001 From: Robert Leahy Date: Sun, 22 Dec 2019 18:10:39 -0500 Subject: [PATCH] detail/value_functors.hpp: Add Namespacing value_less and value_equal are now boost::container::value_less & boost::container::value_equal respectively. --- include/boost/container/detail/value_functors.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/boost/container/detail/value_functors.hpp b/include/boost/container/detail/value_functors.hpp index a2c494c..961c9a8 100644 --- a/include/boost/container/detail/value_functors.hpp +++ b/include/boost/container/detail/value_functors.hpp @@ -18,6 +18,9 @@ # pragma once #endif +namespace boost { +namespace container { + //Functors for member algorithm defaults template struct value_less @@ -33,4 +36,7 @@ struct value_equal { return a == b; } }; +} //namespace container { +} //namespace boost { + #endif //BOOST_CONTAINER_DETAIL_VALUE_FUNCTORS_HPP