mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
071d7dd49b
utility.hpp 追加
20 lines
522 B
C++
20 lines
522 B
C++
#ifndef SPROUT_UTILITY_FORWARD_HPP
|
|
#define SPROUT_UTILITY_FORWARD_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
|
|
namespace sprout {
|
|
//
|
|
// forward
|
|
//
|
|
template<typename T>
|
|
SPROUT_CONSTEXPR T&& forward(typename std::remove_reference<T>::type& t) SPROUT_NOEXCEPT {
|
|
return static_cast<T&&>(t);
|
|
}
|
|
template<typename T>
|
|
SPROUT_CONSTEXPR T&& forward(typename std::remove_reference<T>::type&& t) SPROUT_NOEXCEPT = delete;
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_FORWARD_HPP
|
|
|