mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +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:
+1
-1
@@ -45,7 +45,7 @@ class PawnInfo {
|
|||||||
friend class PawnInfoTable;
|
friend class PawnInfoTable;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
PawnInfo() : key(0) { clear(); }
|
PawnInfo() { clear(); }
|
||||||
|
|
||||||
Value mg_value() const;
|
Value mg_value() const;
|
||||||
Value eg_value() const;
|
Value eg_value() const;
|
||||||
|
|||||||
Reference in New Issue
Block a user