X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftypes.h;h=5dcfe51e82185884cfa610dc15df15b5df55b20e;hp=7ebe3f61f8580b0b241a9c0580b8f83768a57fc0;hb=c556fe1d716fcef3215c239f02b314ec7b42f0d1;hpb=2bfe61c33b99bd5ebb2e4616a6e8ac5790ff4c4f diff --git a/src/types.h b/src/types.h index 7ebe3f61..5dcfe51e 100644 --- a/src/types.h +++ b/src/types.h @@ -79,6 +79,12 @@ const bool HasPopCnt = true; const bool HasPopCnt = false; #endif +#ifdef USE_PEXT +const bool HasPext = true; +#else +const bool HasPext = false; +#endif + #ifdef IS_64BIT const bool Is64Bit = true; #else