Avoid the use of structured bindings

This commit is contained in:
Loic Guegan 2022-02-21 10:06:53 +01:00
parent 5e78a4172d
commit 8b499044fd

View file

@ -370,8 +370,8 @@ bool ChessArbiter::IsDrawByNoMoves() {
}
bool ChessArbiter::IsDrawByRepetitions() {
for (auto const &[key, val] : positions) {
if (val >= 3) {
for (auto const &pos : positions) {
if (pos.second >= 3) {
return (true);
}
}
@ -502,8 +502,8 @@ std::string ChessArbiter::ParseSAN(std::string SANMove) {
}
// Ensure that we return empty string if no matches
if(src.size()<=0){
return("");
if (src.size() <= 0) {
return ("");
}
// Else return "srcdst" string
return (src + dst);