Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r73780 - sandbox/conversion/boost/conversion/fp
From: vicente.botet_at_[hidden]
Date: 2011-08-15 12:52:50


Author: viboes
Date: 2011-08-15 12:52:49 EDT (Mon, 15 Aug 2011)
New Revision: 73780
URL: http://svn.boost.org/trac/boost/changeset/73780

Log:
conversion: remove enable_functor
Text files modified:
   sandbox/conversion/boost/conversion/fp/convert_to.hpp | 24 ------------------------
   1 files changed, 0 insertions(+), 24 deletions(-)

Modified: sandbox/conversion/boost/conversion/fp/convert_to.hpp
==============================================================================
--- sandbox/conversion/boost/conversion/fp/convert_to.hpp (original)
+++ sandbox/conversion/boost/conversion/fp/convert_to.hpp 2011-08-15 12:52:49 EDT (Mon, 15 Aug 2011)
@@ -40,30 +40,6 @@
 
 namespace boost {
   namespace conversion {
-#if 1
- //! meta-function to state if the parameter is a place_holder
- //!
- //! @tparam T The type to check for.
- //! @tparam Enable A dummy parameter that can be used for SFINAE.
-
- //! The nested type @c type is @c false_type or @c true_type which default to @c false_type.
- //! Specific specialization would make this meta-function to be @c true_type.
- template <typename T, typename Enabled=void>
- struct enable_functor : false_type {};
-
- //! @c enable_functor meta-function specialization for types @c T satisfying @c phoenix::is_actor<T>.
-
- //! The nested type @ type is @c true_type.
- template <typename T>
- struct enable_functor<T
-#if defined(BOOST_CONVERSION_DOXYGEN_INVOKED)
- , requires(PhoenixActor<T>)
-#else
- , typename enable_if<phoenix::is_actor<T> >::type
-#endif
- > : true_type {};
-
-#endif
     namespace detail {
       struct convert_to_eval
       {


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