mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Another ::as_rvalue fixup
This commit is contained in:
parent
c69691f19b
commit
926e0467cf
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ template <std::size_t N>
|
|||
using get_sint_t = typename get_int_impl<N>::stype;
|
||||
|
||||
template <typename T>
|
||||
std::remove_reference_t<T> as_rvalue(T&& obj)
|
||||
std::remove_cvref_t<T> as_rvalue(T&& obj)
|
||||
{
|
||||
return std::forward<T>(obj);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue