diff --git a/include/boost/tuple/detail/tuple_basic.hpp b/include/boost/tuple/detail/tuple_basic.hpp index ea3b469..553a453 100644 --- a/include/boost/tuple/detail/tuple_basic.hpp +++ b/include/boost/tuple/detail/tuple_basic.hpp @@ -23,6 +23,7 @@ // David Abrahams. // Revision history: +// 2002 05 01 Hugo Duncan: Fix for Borland after Jaakko's previous changes // 2002 04 18 Jaakko: tuple element types can be void or plain function // types, as long as no object is created. // Tuple objects can no hold even noncopyable types @@ -226,7 +227,7 @@ template class non_storeable_type { template struct wrap_non_storeable_type { typedef typename IF< - boost::is_function::value, non_storeable_type, T + ::boost::is_function::value, non_storeable_type, T >::RET type; }; template <> struct wrap_non_storeable_type {