Chris@16: // Copyright David Abrahams 2003. Use, modification and distribution is Chris@16: // subject to the Boost Software License, Version 1.0. (See accompanying Chris@16: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: #ifndef ANY_CONVERSION_EATER_DWA20031117_HPP Chris@16: # define ANY_CONVERSION_EATER_DWA20031117_HPP Chris@16: Chris@101: namespace boost { Chris@101: namespace iterators { Chris@101: namespace detail { Chris@16: Chris@16: // This type can be used in traits to "eat" up the one user-defined Chris@16: // implicit conversion allowed. Chris@16: struct any_conversion_eater Chris@16: { Chris@16: template Chris@16: any_conversion_eater(T const&); Chris@16: }; Chris@16: Chris@101: }}} // namespace boost::iterators::detail Chris@16: Chris@16: #endif // ANY_CONVERSION_EATER_DWA20031117_HPP