2013-08-08 18:54:33 +09:00
|
|
|
/*=============================================================================
|
2014-01-08 16:48:12 +09:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 18:54:33 +09:00
|
|
|
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-10-01 00:04:03 +09: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 14:58:46 +09:00
|
|
|
inline SPROUT_CONSTEXPR T&&
|
|
|
|
forward(typename std::remove_reference<T>::type& t) SPROUT_NOEXCEPT {
|
2011-10-01 00:04:03 +09:00
|
|
|
return static_cast<T&&>(t);
|
|
|
|
}
|
|
|
|
template<typename T>
|
2012-07-07 14:58:46 +09:00
|
|
|
inline SPROUT_CONSTEXPR T&&
|
2013-07-22 22:00:09 +09:00
|
|
|
forward(typename std::remove_reference<T>::type&&) SPROUT_NOEXCEPT SPROUT_DELETED_FUNCTION_DECL
|
2011-10-01 00:04:03 +09:00
|
|
|
} // namespace sprout
|
|
|
|
|
2014-02-22 16:32:51 +09:00
|
|
|
//
|
|
|
|
// SPROUT_FORWARD
|
|
|
|
//
|
|
|
|
#if defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)
|
|
|
|
# define SPROUT_FORWARD(TYPE, VALUE) \
|
|
|
|
static_cast<decltype(::sprout::forward<TYPE>(VALUE))>(VALUE)
|
|
|
|
#else
|
|
|
|
# define SPROUT_FORWARD(TYPE, VALUE) \
|
|
|
|
::sprout::forward<TYPE>(VALUE)
|
|
|
|
#endif
|
|
|
|
|
2011-10-01 00:04:03 +09:00
|
|
|
#endif // #ifndef SPROUT_UTILITY_FORWARD_HPP
|