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();
}
}