1234567891011121314151617181920212223242526272829 |
- #ifndef IMPLICIT_CAST_DWA200356_HPP
- # define IMPLICIT_CAST_DWA200356_HPP
- # include <boost/mpl/identity.hpp>
- namespace boost {
- template <typename T>
- inline T implicit_cast (typename mpl::identity<T>::type x) {
- return x;
- }
- }
- #endif
|