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:
parent
3a76163aba
commit
b6b0878da8
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue