]> git.sesse.net Git - stockfish/blobdiff - src/movepick.cpp
Retire FORCE_INLINE
[stockfish] / src / movepick.cpp
index face865af823be4309803b19faf61b5782447a26..190a30f8c8c613f22dcd8351ed3609ce1ac66986 100644 (file)
@@ -52,7 +52,7 @@ namespace {
   // pick_best() finds the best move in the range (begin, end) and moves it to
   // the front. It's faster than sorting all the moves in advance when there
   // are few moves e.g. the possible captures.
-  inline Move pick_best(ExtMove* begin, ExtMove* end)
+  Move pick_best(ExtMove* begin, ExtMove* end)
   {
       std::swap(*begin, *std::max_element(begin, end));
       return *begin;