]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.cpp
Fix a compile error with Intel icc
[stockfish] / src / ucioption.cpp
index c31a49e78ae9b62e4cbfb7872baf0edf8db31c1a..1504f64ec41c8d88c3bfe40283a61907bb2af1bd 100644 (file)
@@ -64,11 +64,11 @@ namespace {
     size_t idx;
 
     Option();
-    Option(const std::string& defaultValue, OptionType = STRING);
+    Option(const char* defaultValue, OptionType = STRING);
     Option(bool defaultValue, OptionType = CHECK);
     Option(int defaultValue, int minValue, int maxValue);
 
-    bool operator<(const Option& o) { return this->idx < o.idx; }
+    bool operator<(const Option& o) const { return this->idx < o.idx; }
   };
 
   typedef std::map<std::string, Option> Options;
@@ -342,7 +342,7 @@ namespace {
 
   Option::Option() {} // To allow insertion in a std::map
 
-  Option::Option(const std::string& def, OptionType t)
+  Option::Option(const char* def, OptionType t)
   : defaultValue(def), currentValue(def), type(t), idx(options.size()), minValue(0), maxValue(0) {}
 
   Option::Option(bool def, OptionType t)