summaryrefslogtreecommitdiff
path: root/boost/lambda/detail/operators.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/lambda/detail/operators.hpp')
-rw-r--r--boost/lambda/detail/operators.hpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/boost/lambda/detail/operators.hpp b/boost/lambda/detail/operators.hpp
index 149e1eeaa4..136e28f1b4 100644
--- a/boost/lambda/detail/operators.hpp
+++ b/boost/lambda/detail/operators.hpp
@@ -161,23 +161,6 @@ namespace detail {
// Note that the overloading is const vs. non-const first argument
-#ifdef BOOST_NO_TEMPLATED_STREAMS
-template<class T> struct convert_ostream_to_ref_others_to_c_plain_by_default {
- typedef typename detail::IF<
- boost::is_convertible<T*, std::ostream*>::value,
- T&,
- typename const_copy_argument <T>::type
- >::RET type;
-};
-
-template<class T> struct convert_istream_to_ref_others_to_c_plain_by_default {
- typedef typename detail::IF<
- boost::is_convertible<T*, std::istream*>::value,
- T&,
- typename const_copy_argument <T>::type
- >::RET type;
-};
-#else
template<class T> struct convert_ostream_to_ref_others_to_c_plain_by_default {
typedef typename detail::IF<
@@ -198,7 +181,6 @@ template<class T> struct convert_istream_to_ref_others_to_c_plain_by_default {
typename const_copy_argument <T>::type
>::RET type;
};
-#endif
} // detail