File indexing completed on 2025-01-18 09:52:45
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_FORCE_CAST_MJM012402_HPP
0011 #define BOOST_FORCE_CAST_MJM012402_HPP
0012
0013 #include <boost/thread/detail/config.hpp>
0014
0015 namespace boost {
0016 namespace detail {
0017 namespace thread {
0018
0019
0020
0021
0022 template<class Return_Type, class Argument_Type>
0023 inline Return_Type &force_cast(Argument_Type &rSrc)
0024 {
0025 return(*reinterpret_cast<Return_Type *>(&rSrc));
0026 }
0027
0028
0029 template<class Return_Type, class Argument_Type>
0030 inline const Return_Type &force_cast(const Argument_Type &rSrc)
0031 {
0032 return(*reinterpret_cast<const Return_Type *>(&rSrc));
0033 }
0034
0035 }
0036 }
0037 }
0038
0039 #endif