From: Marco Costalba Date: Thu, 4 Aug 2011 09:10:03 +0000 (+0100) Subject: Fix a (silly) warning under icc compiler X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=b6b0878da807436cd99631ebecc982b31fca7cce;p=fairystockfish.git Fix a (silly) warning under icc compiler No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/ucioption.h b/src/ucioption.h index c764ac8..d0d655c 100644 --- a/src/ucioption.h +++ b/src/ucioption.h @@ -51,7 +51,7 @@ struct CaseInsensitiveLess { /// Our options container is actually a map with a customized c'tor -struct OptionsMap : std::map { +struct OptionsMap : public std::map { OptionsMap(); std::string print_all() const; };