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