Skip to content

Commit

Permalink
adressing issue #825 (#2054)
Browse files Browse the repository at this point in the history
* Update bitboard.h

adressing issue #825

* Update bitboard.h

adressing issue #825
  • Loading branch information
KarlKfoury authored Aug 25, 2024
1 parent 2725e88 commit 08b41c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chess/bitboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class BoardSquare {

// Represents a board as an array of 64 bits.
// Bit enumeration goes from bottom to top, from left to right:
// Square a1 is bit 0, square a8 is bit 7, square b1 is bit 8.
// Square a1 is bit 0, square h1 is bit 7, square a2 is bit 8.
class BitBoard {
public:
constexpr BitBoard(std::uint64_t board) : board_(board) {}
Expand Down

0 comments on commit 08b41c4

Please sign in to comment.