mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-21 02:42:39 +02:00
fssystem: fix stupid issue in NodeBuffer move-ctor
Code compiles with this constructor deleted, so it wasn't used, but even so...
This commit is contained in:
parent
8b88351cb4
commit
4e6bd19fcd
@ -113,7 +113,7 @@ namespace ams::fssystem {
|
|||||||
AMS_ASSERT(m_header == nullptr);
|
AMS_ASSERT(m_header == nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
NodeBuffer(NodeBuffer &&rhs) : m_allocator(rhs.m_allocator), m_header(rhs.m_allocator) {
|
NodeBuffer(NodeBuffer &&rhs) : m_allocator(rhs.m_allocator), m_header(rhs.m_header) {
|
||||||
rhs.m_allocator = nullptr;
|
rhs.m_allocator = nullptr;
|
||||||
rhs.m_header = nullptr;
|
rhs.m_header = nullptr;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user