projects
/
fairystockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
3a76163
)
Fix a (silly) warning under icc compiler
author
Marco Costalba
<mcostalba@gmail.com>
Thu, 4 Aug 2011 09:10:03 +0000 (10:10 +0100)
committer
Marco Costalba
<mcostalba@gmail.com>
Thu, 4 Aug 2011 09:10:03 +0000 (10:10 +0100)
No functional change.
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/ucioption.h
patch
|
blob
|
history
diff --git
a/src/ucioption.h
b/src/ucioption.h
index
c764ac8
..
d0d655c
100644
(file)
--- 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<std::string, UCIOption, CaseInsensitiveLess> {
+struct OptionsMap : public std::map<std::string, UCIOption, CaseInsensitiveLess> {
OptionsMap();
std::string print_all() const;
};