Remove some tabs.

[SVN r44615]
This commit is contained in:
Daniel James
2008-04-20 12:11:22 +00:00
parent 1c8ff48a21
commit 69943aebf4

View File

@@ -69,14 +69,14 @@ class test_can_convert_anything { };
/*************************************************************************************************/
/*
REVISIT (sparent@adobe.com): This is a work around for Boost 1.34.1 and VC++ 2008 where
boost::is_convertible<T, T> fails to compile.
REVISIT (sparent@adobe.com): 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>
> { };
/*************************************************************************************************/