mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-24 02:57:11 +08:00
Fix a (silly) warning under icc compiler
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -51,7 +51,7 @@ struct CaseInsensitiveLess {
|
|||||||
|
|
||||||
|
|
||||||
/// Our options container is actually a map with a customized c'tor
|
/// Our options container is actually a map with a customized c'tor
|
||||||
struct OptionsMap : std::map<std::string, UCIOption, CaseInsensitiveLess> {
|
struct OptionsMap : public std::map<std::string, UCIOption, CaseInsensitiveLess> {
|
||||||
OptionsMap();
|
OptionsMap();
|
||||||
std::string print_all() const;
|
std::string print_all() const;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user