mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 08:13:08 +00:00
Fix a warning under icc
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
42ed488987
commit
4350d9e8a6
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ using std::endl;
|
|||
|
||||
static inline bool isZero(char c) { return c == '0'; }
|
||||
|
||||
struct PieceLetters : std::map<char, Piece> {
|
||||
struct PieceLetters : public std::map<char, Piece> {
|
||||
|
||||
PieceLetters() {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue