mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Create Missing Paths for Dev_USB/HDD0 and mms
In addiytion, fix 2 warnings.
This commit is contained in:
parent
50dad6801b
commit
a0297933ce
4 changed files with 28 additions and 8 deletions
|
|
@ -14,7 +14,7 @@ namespace utils
|
|||
|
||||
dynamic_library(const dynamic_library&) = delete;
|
||||
|
||||
dynamic_library(dynamic_library&& other)
|
||||
dynamic_library(dynamic_library&& other) noexcept
|
||||
: m_handle(other.m_handle)
|
||||
{
|
||||
other.m_handle = nullptr;
|
||||
|
|
@ -22,7 +22,7 @@ namespace utils
|
|||
|
||||
dynamic_library& operator=(const dynamic_library&) = delete;
|
||||
|
||||
dynamic_library& operator=(dynamic_library&& other)
|
||||
dynamic_library& operator=(dynamic_library&& other) noexcept
|
||||
{
|
||||
std::swap(m_handle, other.m_handle);
|
||||
return *this;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue