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