Sprout/sprout/utility/move.hpp
bolero-MURAKAMI e11c2eb867 sprout/utility/move.hpp 追加
tuple に要素数の異なるタプルからの暗黙の変換を追加
2011-11-03 13:15:21 +09:00

17 lines
419 B
C++

#ifndef SPROUT_UTILITY_MOVE_HPP
#define SPROUT_UTILITY_MOVE_HPP
#include <type_traits>
#include <sprout/config.hpp>
namespace sprout {
//
// move
//
template<typename T>
SPROUT_CONSTEXPR typename std::remove_reference<T>::type&& move(T&& t) SPROUT_NOEXCEPT {
return static_cast<typename std::remove_reference<T>::type&&>(t);
}
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_MOVE_HPP