123456789101112131415161718192021222324252627282930313233 |
- #ifndef BOOST_IMPLICIT_CAST_DWA200356_HPP
- #define BOOST_IMPLICIT_CAST_DWA200356_HPP
- namespace boost {
- namespace detail {
- template<class T> struct icast_identity
- {
- typedef T type;
- };
- }
- template <typename T>
- inline T implicit_cast (typename boost::detail::icast_identity<T>::type x) {
- return x;
- }
- }
- #endif
|