[Move] Lint
This commit is contained in:
4
Move.cpp
4
Move.cpp
@@ -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;
|
||||||
|
Reference in New Issue
Block a user