From 001f5b4c141cfff7a66393bd94c285207b0f8a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Wed, 1 May 2002 20:53:44 +0000 Subject: [PATCH] Previous changes broke tuples for Borland, this should fix it [SVN r13611] --- include/boost/tuple/detail/tuple_basic.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 {