Fix a typo in bitboard.h
authorMarco Costalba <mcostalba@gmail.com>
Thu, 25 Jul 2013 05:44:27 +0000 (07:44 +0200)
committerMarco Costalba <mcostalba@gmail.com>
Thu, 25 Jul 2013 05:44:27 +0000 (07:44 +0200)
Introduced by previous patch.

Spotted by Joerg Oster

No functional change.

src/bitboard.h

index d15d883..859fc95 100644 (file)
@@ -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)