1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-29 08:13:08 +00:00

There is no need to clear TT at allocation time

Operator new() already returns a zeroed memory.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2010-07-11 09:42:04 +01:00
parent 82bd61a8fa
commit ee8cdb1721

View file

@ -72,7 +72,6 @@ void TranspositionTable::set_size(size_t mbSize) {
<< " MB for transposition table." << std::endl;
Application::exit_with_failure();
}
clear();
}
}