2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00: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-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
|
|
|
|
|
2014-02-22 07:32:51 +00: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-09-30 15:04:03 +00:00
|
|
|
#endif // #ifndef SPROUT_UTILITY_FORWARD_HPP
|