mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
fix math/comparison.hpp
This commit is contained in:
parent
1c65d59971
commit
3b6ba46f17
23 changed files with 389 additions and 175 deletions
|
@ -9,11 +9,13 @@ namespace sprout {
|
|||
// forward
|
||||
//
|
||||
template<typename T>
|
||||
inline SPROUT_CONSTEXPR T&& forward(typename std::remove_reference<T>::type& t) SPROUT_NOEXCEPT {
|
||||
inline SPROUT_CONSTEXPR T&&
|
||||
forward(typename std::remove_reference<T>::type& t) SPROUT_NOEXCEPT {
|
||||
return static_cast<T&&>(t);
|
||||
}
|
||||
template<typename T>
|
||||
inline SPROUT_CONSTEXPR T&& forward(typename std::remove_reference<T>::type&& t) SPROUT_NOEXCEPT = delete;
|
||||
inline SPROUT_CONSTEXPR T&&
|
||||
forward(typename std::remove_reference<T>::type&& t) SPROUT_NOEXCEPT = delete;
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_UTILITY_FORWARD_HPP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue