1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-29 16:23:09 +00:00

Fix a (silly) warning under icc compiler

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2011-08-04 10:10:03 +01:00
parent 3a76163aba
commit b6b0878da8

View file

@ -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;
};