$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: gpderetta_at_[hidden]
Date: 2008-04-11 11:49:02
Author: giovanni.deretta
Date: 2008-04-11 11:49:02 EDT (Fri, 11 Apr 2008)
New Revision: 44176
URL: http://svn.boost.org/trac/boost/changeset/44176
Log:
compilation fix for gcc.4.3
Text files modified: 
   sandbox/SOC/2006/coroutine/branches/cleanup/boost/coroutine/detail/has_swap.hpp |     4 ++--                                    
   sandbox/SOC/2006/coroutine/branches/cleanup/boost/coroutine/move.hpp            |     2 +-                                      
   2 files changed, 3 insertions(+), 3 deletions(-)
Modified: sandbox/SOC/2006/coroutine/branches/cleanup/boost/coroutine/detail/has_swap.hpp
==============================================================================
--- sandbox/SOC/2006/coroutine/branches/cleanup/boost/coroutine/detail/has_swap.hpp	(original)
+++ sandbox/SOC/2006/coroutine/branches/cleanup/boost/coroutine/detail/has_swap.hpp	2008-04-11 11:49:02 EDT (Fri, 11 Apr 2008)
@@ -65,9 +65,9 @@
       BOOST_STATIC_CONSTANT(bool, value = sizeof(swap(x,x),'x') == 1);
       
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-      typedef boost::mpl::bool_<has_swap_impl<T>::value> type;
+      typedef ::boost::mpl::bool_<has_swap_impl<T>::value> type;
 #else
-      typedef boost::mpl::bool_<value> type;
+      typedef ::boost::mpl::bool_<value> type;
 #endif      
   };
 }
Modified: sandbox/SOC/2006/coroutine/branches/cleanup/boost/coroutine/move.hpp
==============================================================================
--- sandbox/SOC/2006/coroutine/branches/cleanup/boost/coroutine/move.hpp	(original)
+++ sandbox/SOC/2006/coroutine/branches/cleanup/boost/coroutine/move.hpp	2008-04-11 11:49:02 EDT (Fri, 11 Apr 2008)
@@ -154,7 +154,7 @@
 // Detect whether T is movable
 template <class T>
 struct is_movable
-  : boost::is_convertible<T,move_from<T> >
+  : ::boost::is_convertible<T,move_from<T> >
 {
 };