mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-27 18:54:26 +01:00
glasm: Add missing return value on move assignment
This commit is contained in:
parent
fb3ba62b3a
commit
afcb140185
@ -25,6 +25,7 @@ struct ScopedRegister {
|
|||||||
}
|
}
|
||||||
reg_alloc = std::exchange(rhs.reg_alloc, nullptr);
|
reg_alloc = std::exchange(rhs.reg_alloc, nullptr);
|
||||||
reg = rhs.reg;
|
reg = rhs.reg;
|
||||||
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
ScopedRegister(ScopedRegister&& rhs) noexcept
|
ScopedRegister(ScopedRegister&& rhs) noexcept
|
||||||
|
Loading…
Reference in New Issue
Block a user