object_pool: Add missing return in Chunk move assignment operator
Prevents undefined behavior from occurring.
This commit is contained in:
parent
7e272d3cd8
commit
89ad9df0e9
1 changed files with 1 additions and 0 deletions
|
@ -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…
Reference in a new issue