New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
any_conversion_eater.hpp in vendors/XIOS/current/extern/boost/include/boost/iterator/detail – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/iterator/detail/any_conversion_eater.hpp @ 3428

Last change on this file since 3428 was 3428, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

File size: 619 bytes
Line 
1// Copyright David Abrahams 2003. Use, modification and distribution is
2// subject to the Boost Software License, Version 1.0. (See accompanying
3// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4#ifndef ANY_CONVERSION_EATER_DWA20031117_HPP
5# define ANY_CONVERSION_EATER_DWA20031117_HPP
6
7namespace boost { namespace detail {
8
9// This type can be used in traits to "eat" up the one user-defined
10// implicit conversion allowed.
11struct any_conversion_eater
12{
13    template <class T>
14    any_conversion_eater(T const&);
15};
16
17}} // namespace boost::detail
18
19#endif // ANY_CONVERSION_EATER_DWA20031117_HPP
Note: See TracBrowser for help on using the repository browser.