From 8b499044fd3b8ac60d356b7947680fcb011bfd80 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Mon, 21 Feb 2022 10:06:53 +0100 Subject: [PATCH] Avoid the use of structured bindings --- src/ChessArbiter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ChessArbiter.cpp b/src/ChessArbiter.cpp index e747397..0103b2a 100644 --- a/src/ChessArbiter.cpp +++ b/src/ChessArbiter.cpp @@ -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);