mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-23 18:46:59 +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
|
||||
struct OptionsMap : std::map<std::string, UCIOption, CaseInsensitiveLess> {
|
||||
struct OptionsMap : public std::map<std::string, UCIOption, CaseInsensitiveLess> {
|
||||
OptionsMap();
|
||||
std::string print_all() const;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user