[Move] Lint

This commit is contained in:
2022-12-18 17:59:34 +01:00
parent 8613a92e2a
commit d9ed8e498d
2 changed files with 21 additions and 23 deletions

View File

@@ -3,8 +3,7 @@
#include <ostream> #include <ostream>
Move::Move(const Square &from, const Square &to, Move::Move(const Square &from, const Square &to,
const std::optional<PieceType>& promotion) const std::optional<PieceType> &promotion) {
{
(void) from; (void) from;
(void) to; (void) to;
(void) promotion; (void) promotion;
@@ -32,7 +31,6 @@ std::ostream& operator<<(std::ostream& os, const Move& move) {
return os; return os;
} }
bool operator<(const Move &lhs, const Move &rhs) { bool operator<(const Move &lhs, const Move &rhs) {
(void) lhs; (void) lhs;
(void) rhs; (void) rhs;