1234567891011121314151617181920212223242526 |
- #ifndef BOOST_HOF_GUARD_FUNCTION_REMOVE_RVALUE_REFERENCE_H
- #define BOOST_HOF_GUARD_FUNCTION_REMOVE_RVALUE_REFERENCE_H
- namespace boost { namespace hof { namespace detail {
- template<class T>
- struct remove_rvalue_reference
- {
- typedef T type;
- };
- template<class T>
- struct remove_rvalue_reference<T&&>
- : remove_rvalue_reference<T>
- {};
- }}}
- #endif
|