2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
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&&
|
2013-07-22 13:00:09 +00:00
|
|
|
forward(typename std::remove_reference<T>::type&&) SPROUT_NOEXCEPT SPROUT_DELETED_FUNCTION_DECL
|
2011-09-30 15:04:03 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_FORWARD_HPP
|