Merge branch 'cas_with_app_copy' into python_console

This commit is contained in:
Romain Goyet
2017-11-21 18:44:38 +01:00
273 changed files with 10671 additions and 4643 deletions

View File

@@ -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;
}
}