checkout useless changs

This commit is contained in:
lizzie 2026-05-06 15:47:35 +00:00
parent d53970e7ea
commit 1f34cb73cf
4 changed files with 2 additions and 4 deletions

View file

@ -39,8 +39,7 @@ public:
VirtualBuffer& operator=(const VirtualBuffer&) = delete;
VirtualBuffer(VirtualBuffer&& other) noexcept
: alloc_size{std::exchange(other.alloc_size, 0)}
, base_ptr{std::exchange(other.base_ptr, nullptr)}
: alloc_size{std::exchange(other.alloc_size, 0)}, base_ptr{std::exchange(other.base_ptr), nullptr}
{}
VirtualBuffer& operator=(VirtualBuffer&& other) noexcept {