object_pool: Add missing return in Chunk move assignment operator

Prevents undefined behavior from occurring.
pull/8/head
Lioncash 4 years ago
parent 7e272d3cd8
commit 89ad9df0e9

@ -63,6 +63,7 @@ private:
used_objects = std::exchange(rhs.used_objects, 0);
num_objects = std::exchange(rhs.num_objects, 0);
storage = std::move(rhs.storage);
return *this;
}
Chunk(Chunk&& rhs) noexcept

Loading…
Cancel
Save