From 4350d9e8a6c979c5631d05ecb645834882701e4c Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Tue, 14 Sep 2010 04:24:04 +0200 Subject: [PATCH] Fix a warning under icc No functional change. Signed-off-by: Marco Costalba --- src/position.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/position.cpp b/src/position.cpp index cbc64609..feb185cf 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -46,7 +46,7 @@ using std::endl; static inline bool isZero(char c) { return c == '0'; } -struct PieceLetters : std::map { +struct PieceLetters : public std::map { PieceLetters() { -- 2.39.2