]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.h
Remove the now redundant TT prefetch call from Position::do_move.
[stockfish] / src / ucioption.h
index 75e4ac1301e6d85e2b7daf8bb451bfeeb670a20e..87411a44929e93ede02be81d186cf81822566e95 100644 (file)
@@ -47,7 +47,7 @@ public:
   Option(int v, int min, int max, OnChange = NULL);
 
   Option& operator=(const std::string& v);
-  Option& operator<<(const Option& o);
+  void operator<<(const Option& o);
   operator int() const;
   operator std::string() const;
 
@@ -61,7 +61,7 @@ private:
 };
 
 void init(OptionsMap&);
-void loop(const std::string&);
+void loop(int argc, char* argv[]);
 
 } // namespace UCI