From ee5ab38a637ecc2806f0d5bb83891439303a6c08 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 6 Feb 2005 19:53:21 +0000 Subject: [PATCH] tru64, MIPS Pro ambiguity fix [SVN r27182] --- include/boost/bind.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/bind.hpp b/include/boost/bind.hpp index d014b2d..5328f49 100644 --- a/include/boost/bind.hpp +++ b/include/boost/bind.hpp @@ -203,9 +203,9 @@ public: A1 operator[] (boost::arg<1> (*) ()) const { return a1_; } - template T & operator[] (value & v) const { return v.get(); } + template T & operator[] ( _bi::value & v ) const { return v.get(); } - template T const & operator[] (value const & v) const { return v.get(); } + template T const & operator[] ( _bi::value const & v ) const { return v.get(); } template T & operator[] (reference_wrapper const & v) const { return v.get(); }