mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
Merge branch 'cas_with_app_copy' into python_console
This commit is contained in:
@@ -7,8 +7,8 @@ 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;
|
||||
template <class T> typename remove_reference<T>::type&& move(T&& a) {
|
||||
return (typename remove_reference<T>::type&&)a;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user