From 1c3e6c5b65f4c63de40adfe1e74d9487ebafd514 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 11 Oct 2005 23:43:44 +0000 Subject: [PATCH] GCC 4.0.2 workarounds [SVN r31295] --- include/boost/iterator/is_lvalue_iterator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/iterator/is_lvalue_iterator.hpp b/include/boost/iterator/is_lvalue_iterator.hpp index 4938151..3beb90d 100755 --- a/include/boost/iterator/is_lvalue_iterator.hpp +++ b/include/boost/iterator/is_lvalue_iterator.hpp @@ -33,7 +33,7 @@ namespace detail template not_an_lvalue lvalue_preserver(U const&, ...); -# define BOOST_LVALUE_PRESERVER(expr) lvalue_preserver(expr,0) +# define BOOST_LVALUE_PRESERVER(expr) detail::lvalue_preserver(expr,0) #else