$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: daniel_james_at_[hidden]
Date: 2008-04-20 08:11:22
Author: danieljames
Date: 2008-04-20 08:11:22 EDT (Sun, 20 Apr 2008)
New Revision: 44615
URL: http://svn.boost.org/trac/boost/changeset/44615
Log:
Remove some tabs.
Text files modified: 
   trunk/boost/unordered/detail/move.hpp |     8 ++++----                                
   1 files changed, 4 insertions(+), 4 deletions(-)
Modified: trunk/boost/unordered/detail/move.hpp
==============================================================================
--- trunk/boost/unordered/detail/move.hpp	(original)
+++ trunk/boost/unordered/detail/move.hpp	2008-04-20 08:11:22 EDT (Sun, 20 Apr 2008)
@@ -69,14 +69,14 @@
 /*************************************************************************************************/
 
 /*
-	REVISIT (sparent_at_[hidden]): This is a work around for Boost 1.34.1 and VC++ 2008 where
-	boost::is_convertible<T, T> fails to compile.
+    REVISIT (sparent_at_[hidden]): This is a work around for Boost 1.34.1 and VC++ 2008 where
+    boost::is_convertible<T, T> fails to compile.
 */
 
 template <typename T, typename U>
 struct is_convertible : boost::mpl::or_<
-	boost::is_same<T, U>,
-	boost::is_convertible<T, U>
+    boost::is_same<T, U>,
+    boost::is_convertible<T, U>
 > { };
 
 /*************************************************************************************************/