[Move] Lint
This commit is contained in:
4
Move.cpp
4
Move.cpp
@@ -3,8 +3,7 @@
|
||||
#include <ostream>
|
||||
|
||||
Move::Move(const Square &from, const Square &to,
|
||||
const std::optional<PieceType>& promotion)
|
||||
{
|
||||
const std::optional<PieceType> &promotion) {
|
||||
(void) from;
|
||||
(void) to;
|
||||
(void) promotion;
|
||||
@@ -32,7 +31,6 @@ std::ostream& operator<<(std::ostream& os, const Move& move) {
|
||||
return os;
|
||||
}
|
||||
|
||||
|
||||
bool operator<(const Move &lhs, const Move &rhs) {
|
||||
(void) lhs;
|
||||
(void) rhs;
|
||||
|
Reference in New Issue
Block a user