7 lines
91 B
C++
7 lines
91 B
C++
#pragma once
|
|
|
|
template <typename T> inline T&& move(T& lvalue)
|
|
{
|
|
return (T&&)lvalue;
|
|
}
|