mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-06 10:06:26 +02:00
Avoid the use of structured bindings
This commit is contained in:
parent
5e78a4172d
commit
8b499044fd
1 changed files with 4 additions and 4 deletions
|
@ -370,8 +370,8 @@ bool ChessArbiter::IsDrawByNoMoves() {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ChessArbiter::IsDrawByRepetitions() {
|
bool ChessArbiter::IsDrawByRepetitions() {
|
||||||
for (auto const &[key, val] : positions) {
|
for (auto const &pos : positions) {
|
||||||
if (val >= 3) {
|
if (pos.second >= 3) {
|
||||||
return (true);
|
return (true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -502,8 +502,8 @@ std::string ChessArbiter::ParseSAN(std::string SANMove) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure that we return empty string if no matches
|
// Ensure that we return empty string if no matches
|
||||||
if(src.size()<=0){
|
if (src.size() <= 0) {
|
||||||
return("");
|
return ("");
|
||||||
}
|
}
|
||||||
// Else return "srcdst" string
|
// Else return "srcdst" string
|
||||||
return (src + dst);
|
return (src + dst);
|
||||||
|
|
Loading…
Add table
Reference in a new issue