From: Marco Costalba Date: Thu, 4 Aug 2011 09:10:03 +0000 (+0100) Subject: Fix a (silly) warning under icc compiler X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=b6b0878da807436cd99631ebecc982b31fca7cce;ds=sidebyside 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 c764ac8b..d0d655cd 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; };