Remove unneeded return statement

closes https://github.com/official-stockfish/Stockfish/pull/6013

No functional change
This commit is contained in:
FauziAkram
2025-04-23 03:40:16 +03:00
committed by Joost VandeVondele
parent f590767b91
commit 5f32b3ed4b

View File

@@ -52,7 +52,6 @@ void memory_deleter(T* ptr, FREE_FUNC free_func) {
ptr->~T();
free_func(ptr);
return;
}
// Frees memory which was placed there with placement new.