mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
17 lines
353 B
Plaintext
17 lines
353 B
Plaintext
#ifndef LIBAXX_UTILITY
|
|
#define LIBAXX_UTILITY
|
|
|
|
namespace std {
|
|
|
|
template <class T> struct remove_reference {typedef T type;};
|
|
template <class T> struct remove_reference<T&> {typedef T type;};
|
|
template <class T> struct remove_reference<T&&> {typedef T type;};
|
|
|
|
template <class T> typename remove_reference<T>::type&& move(T&&) {
|
|
return a;
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|