ams: basic support for compiling with gcc 15
This commit is contained in:
@@ -33,14 +33,14 @@ namespace ams::fs {
|
||||
}
|
||||
|
||||
ALWAYS_INLINE ScopedSetter(ScopedSetter &&rhs) {
|
||||
m_ptr = rhs.ptr;
|
||||
m_value = rhs.value;
|
||||
m_ptr = rhs.m_ptr;
|
||||
m_value = rhs.m_value;
|
||||
rhs.Reset();
|
||||
}
|
||||
|
||||
ALWAYS_INLINE ScopedSetter &operator=(ScopedSetter &&rhs) {
|
||||
m_ptr = rhs.ptr;
|
||||
m_value = rhs.value;
|
||||
m_ptr = rhs.m_ptr;
|
||||
m_value = rhs.m_value;
|
||||
rhs.Reset();
|
||||
return *this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user