~ubuntu-branches/ubuntu/wily/bombono-dvd/wily

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/iterator/detail/any_conversion_eater.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20101104114625-8xfdhvhpsm51i0nu
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
7
namespace boost { namespace detail {
 
8
 
 
9
// This type can be used in traits to "eat" up the one user-defined
 
10
// implicit conversion allowed.
 
11
struct 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