oscar64/include/opp/move.h

11 lines
104 B
C++

#ifndef OPP_MOVE_H
#define OPP_MOVE_H
template <class T>
T && move(T & m)
{
return (T &&)m;
}
#endif