Luna/luna/include/luna/Move.h

6 lines
92 B
C++

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