Luna/libluna/include/luna/Move.h

7 lines
91 B
C++

#pragma once
template <typename T> inline T&& move(T& lvalue)
{
return (T&&)lvalue;
}