Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:38:54

0001 // Copyright David Abrahams 2003. Use, modification and distribution is
0002 // subject to the Boost Software License, Version 1.0. (See accompanying
0003 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0004 #ifndef ANY_CONVERSION_EATER_DWA20031117_HPP
0005 # define ANY_CONVERSION_EATER_DWA20031117_HPP
0006 
0007 namespace boost {
0008 namespace iterators {
0009 namespace detail {
0010 
0011 // This type can be used in traits to "eat" up the one user-defined
0012 // implicit conversion allowed.
0013 struct any_conversion_eater
0014 {
0015     template <class T>
0016     any_conversion_eater(T const&);
0017 };
0018 
0019 }}} // namespace boost::iterators::detail
0020 
0021 #endif // ANY_CONVERSION_EATER_DWA20031117_HPP