Luna/libluna/include/luna/Move.h
apio 77887eed80
All checks were successful
continuous-integration/drone/push Build is passing
luna -> libluna
2023-02-27 15:22:39 +01:00

7 lines
93 B
C++

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