2011-09-30 15:04:03 +00:00
|
|
|
#ifndef SPROUT_UTILITY_FORWARD_HPP
|
|
|
|
#define SPROUT_UTILITY_FORWARD_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// forward
|
|
|
|
//
|
|
|
|
template<typename T>
|
2012-07-07 05:58:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR T&&
|
|
|
|
forward(typename std::remove_reference<T>::type& t) SPROUT_NOEXCEPT {
|
2011-09-30 15:04:03 +00:00
|
|
|
return static_cast<T&&>(t);
|
|
|
|
}
|
|
|
|
template<typename T>
|
2012-07-07 05:58:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR T&&
|
2012-12-17 14:10:23 +00:00
|
|
|
forward(typename std::remove_reference<T>::type&& t) SPROUT_NOEXCEPT SPROUT_DELETED_FUNCTION_DECL
|
2011-09-30 15:04:03 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_FORWARD_HPP
|