X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsearch.cpp;h=27365069420871c0dcddd0ba8308dcf63d7e4947;hp=d711d743a7a455a5db265715c62facc1f301ddeb;hb=caef31921900e092616c56193e37201b08baa875;hpb=2f47844c7cb34c7de5b5d41cda10b7d8736a20bc diff --git a/src/search.cpp b/src/search.cpp index d711d743..27365069 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -51,6 +51,11 @@ using std::endl; using Eval::evaluate; using namespace Search; +// For some reason argument-dependent lookup (ADL) doesn't work for Android's +// STLPort, so explicitly qualify following functions. +using std::count; +using std::find; + namespace { // Set to true to force running with one thread. Used for debugging