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;
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ namespace ams::sf::hipc {
|
||||
#if AMS_SF_MITM_SUPPORTED
|
||||
Result ServerManagerBase::InstallMitmServerImpl(os::NativeHandle *out_port_handle, sm::ServiceName service_name, ServerManagerBase::MitmQueryFunction query_func) {
|
||||
/* Install the Mitm. */
|
||||
os::NativeHandle query_handle;
|
||||
os::NativeHandle query_handle = os::InvalidNativeHandle;
|
||||
R_TRY(sm::mitm::InstallMitm(out_port_handle, std::addressof(query_handle), service_name));
|
||||
|
||||
/* Register the query handle. */
|
||||
|
||||
Reference in New Issue
Block a user