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