1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 08:43:09 +00:00

Fix a typo in bitboard.h

Introduced by previous patch.

Spotted by Joerg Oster

No functional change.
This commit is contained in:
Marco Costalba 2013-07-25 07:44:27 +02:00
parent 002062ae93
commit 2067a99c07

View 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)