mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-07-01 19:40:47 -07:00
glasm: Add missing return value on move assignment
This commit is contained in:
@ -25,6 +25,7 @@ struct ScopedRegister {
|
||||
}
|
||||
reg_alloc = std::exchange(rhs.reg_alloc, nullptr);
|
||||
reg = rhs.reg;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ScopedRegister(ScopedRegister&& rhs) noexcept
|
||||
|
Reference in New Issue
Block a user