mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
268 B
C++
14 lines
268 B
C++
#if !defined(CODEQL_UTILITY_H)
|
|
#define CODEQL_UTILITY_H
|
|
|
|
#include "type_traits.h"
|
|
|
|
namespace std {
|
|
template<typename T>
|
|
typename remove_reference<T>::type&& move(T&& src) {
|
|
return static_cast<typename remove_reference<T>::type&&>(src);
|
|
}
|
|
}
|
|
|
|
#endif
|