Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r73131 - sandbox/conversion/boost/conversion/type_traits
From: vicente.botet_at_[hidden]
Date: 2011-07-15 21:36:36


Author: viboes
Date: 2011-07-15 21:36:35 EDT (Fri, 15 Jul 2011)
New Revision: 73131
URL: http://svn.boost.org/trac/boost/changeset/73131

Log:
conversion: fix is_constructible remove not useful specializations
Text files modified:
   sandbox/conversion/boost/conversion/type_traits/is_constructible.hpp | 14 --------------
   1 files changed, 0 insertions(+), 14 deletions(-)

Modified: sandbox/conversion/boost/conversion/type_traits/is_constructible.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/type_traits/is_constructible.hpp (original)
+++ sandbox/conversion/boost/conversion/type_traits/is_constructible.hpp 2011-07-15 21:36:35 EDT (Fri, 15 Jul 2011)
@@ -324,20 +324,6 @@
   }
 
 
-
-
-#ifdef BOOST_CONVERSION_NO_IS_DEFAULT_CONSTRUCTIBLE
- // default constructor
- template <> struct is_constructible< int > : true_type {};
-#endif
-#ifdef BOOST_CONVERSION_NO_IS_CONSTRUCTIBLE
- template <class T> struct is_constructible< T*, T* const & > : true_type {};
- template <> struct is_constructible< int, const int > : true_type {};
- template <> struct is_constructible< int, int const& > : true_type {};
- template <> struct is_constructible< double, const double > : true_type {};
- template <> struct is_constructible< double, double const& > : true_type {};
-#endif
-
 }
 
 #endif


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk