mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-20 05:23:04 +01:00
Fix C26439 SPECIAL_NOEXCEPT
This commit is contained in:
@@ -49,7 +49,7 @@ MemoryStream::MemoryStream(const void* data, size_t dataSize)
|
||||
{
|
||||
}
|
||||
|
||||
MemoryStream::MemoryStream(MemoryStream&& mv)
|
||||
MemoryStream::MemoryStream(MemoryStream&& mv) noexcept
|
||||
{
|
||||
*this = std::move(mv);
|
||||
}
|
||||
@@ -65,7 +65,7 @@ MemoryStream::~MemoryStream()
|
||||
_data = nullptr;
|
||||
}
|
||||
|
||||
MemoryStream& MemoryStream::operator=(MemoryStream&& mv)
|
||||
MemoryStream& MemoryStream::operator=(MemoryStream&& mv) noexcept
|
||||
{
|
||||
_access = mv._access;
|
||||
_dataCapacity = mv._dataCapacity;
|
||||
|
||||
Reference in New Issue
Block a user