From: Marco Costalba Date: Thu, 25 Jul 2013 05:44:27 +0000 (+0200) Subject: Fix a typo in bitboard.h X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=2067a99c070891faaa6239371ca882b54065f0cc Fix a typo in bitboard.h Introduced by previous patch. Spotted by Joerg Oster No functional change. --- diff --git a/src/bitboard.h b/src/bitboard.h index d15d8838..859fc958 100644 --- a/src/bitboard.h +++ b/src/bitboard.h @@ -258,7 +258,7 @@ inline Bitboard attacks_bb(Square s, Bitboard occ) { /// lsb()/msb() finds the least/most significant bit in a nonzero bitboard. /// pop_lsb() finds and clears the least significant bit in a nonzero bitboard. -#ifdef BSFQ +#ifdef USE_BSFQ # if defined(_MSC_VER) && !defined(__INTEL_COMPILER)