Sprout/sprout/utility/forward.hpp

20 lines
534 B
C++
Raw Normal View History

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-04-04 08:48:02 +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-04-04 08:48:02 +00:00
inline SPROUT_CONSTEXPR T&& forward(typename std::remove_reference<T>::type&& t) SPROUT_NOEXCEPT = delete;
2011-09-30 15:04:03 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_FORWARD_HPP