1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-07-11 19:49:14 +00:00

Remove a redundant assignment in PawnInfo c'tor

We don't need to set key to 0 because clear() already
takes care of that.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2009-10-06 09:18:15 +01:00
parent 60bc30275d
commit e49b21eacb

View file

@ -45,7 +45,7 @@ class PawnInfo {
friend class PawnInfoTable;
public:
PawnInfo() : key(0) { clear(); }
PawnInfo() { clear(); }
Value mg_value() const;
Value eg_value() const;