From b104e9ae7843821f98efdbbe1ae0ea903240fb58 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 17 Jan 2002 12:46:45 +0000 Subject: [PATCH] smart_ptr.hpp less<> fixed, partial specialization enabled on Sun 5.3 [SVN r12334] --- include/boost/smart_ptr.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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