Create Missing Paths for Dev_USB/HDD0 and mms

In addiytion, fix 2 warnings.
This commit is contained in:
Darkhost1999 2023-07-19 04:01:44 -05:00 committed by GitHub
parent 50dad6801b
commit a0297933ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 8 deletions

View file

@ -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;