]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Sync with master
[stockfish] / src / search.h
index 3d348de94b2b860d5d461b5b287c05f2496e1b6a..32cd1bed0ea714ac114cea16e85c957f504bf124 100644 (file)
@@ -60,7 +60,7 @@ struct RootMove {
   bool operator<(const RootMove& m) const { return score > m.score; } // Ascending sort
   bool operator==(const Move& m) const { return pv[0] == m; }
   void insert_pv_in_tt(Position& pos);
-  Move extract_ponder_from_tt(Position& pos);
+  bool extract_ponder_from_tt(Position& pos);
 
   Value score;
   Value previousScore;