Warning, file /include/boost/hof/detail/remove_rvalue_reference.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_HOF_GUARD_FUNCTION_REMOVE_RVALUE_REFERENCE_H
0009 #define BOOST_HOF_GUARD_FUNCTION_REMOVE_RVALUE_REFERENCE_H
0010
0011 namespace boost { namespace hof { namespace detail {
0012
0013 template<class T>
0014 struct remove_rvalue_reference
0015 {
0016 typedef T type;
0017 };
0018
0019 template<class T>
0020 struct remove_rvalue_reference<T&&>
0021 : remove_rvalue_reference<T>
0022 {};
0023
0024 }}}
0025
0026 #endif