object_pool: Add missing return in Chunk move assignment operator
Prevents undefined behavior from occurring.
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user