Skip to content

Commit

Permalink
Trying to debug windows ci 7
Browse files Browse the repository at this point in the history
Bench: 2134743
  • Loading branch information
SzilBalazs committed Aug 17, 2023
1 parent e1e27f3 commit 58d429c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/chess/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,23 @@ namespace chess {
class Board {

public:
[[nodiscard]] constexpr Color get_stm() const {
[[nodiscard]] inline Color get_stm() const {
return state.stm;
}

[[nodiscard]] constexpr Square get_ep() const {
[[nodiscard]] inline Square get_ep() const {
return state.ep;
}

[[nodiscard]] constexpr Zobrist get_hash() const {
[[nodiscard]] inline Zobrist get_hash() const {
return state.hash;
}

[[nodiscard]] constexpr unsigned int get_move50() const {
[[nodiscard]] inline unsigned int get_move50() const {
return state.move50;
}

[[nodiscard]] constexpr CastlingRights get_rights() const {
[[nodiscard]] inline CastlingRights get_rights() const {
return state.rights;
}

Expand Down

0 comments on commit 58d429c

Please sign in to comment.