12 lines
196 B
Text
12 lines
196 B
Text
#pragma once
|
|
|
|
#include <type_traits>
|
|
|
|
namespace std {
|
|
|
|
template <class t>
|
|
constexpr std::remove_reference_t<t> &&move(t &&x) {
|
|
return static_cast<std::remove_reference_t<t> &&>(x);
|
|
}
|
|
|
|
}
|