diff --git a/include/boost/smart_ptr.hpp b/include/boost/smart_ptr.hpp index d9c0aa5..dbcb787 100644 --- a/include/boost/smart_ptr.hpp +++ b/include/boost/smart_ptr.hpp @@ -377,7 +377,7 @@ template { bool operator()(const boost::shared_ptr& a, const boost::shared_ptr& b) const - { return less()(a.get(),b.get()); } + { return std::less()(a.get(),b.get()); } }; template @@ -386,7 +386,7 @@ template { bool operator()(const boost::shared_array& a, const boost::shared_array& b) const - { return less()(a.get(),b.get()); } + { return std::less()(a.get(),b.get()); } }; } // namespace std