From ed52c7cb70fd282bbcdd58e8982cc7df13c6f275 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Wed, 10 May 2023 07:40:27 +0200 Subject: [PATCH] Remove compilation warnings --- libs/chess-move-interface | 2 +- src/HalfMove.cpp | 2 +- src/PGN.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/chess-move-interface b/libs/chess-move-interface index 03ce412..14ac3bb 160000 --- a/libs/chess-move-interface +++ b/libs/chess-move-interface @@ -1 +1 @@ -Subproject commit 03ce4126cfa09ff0a55e70bdc44c1d5dd4035043 +Subproject commit 14ac3bba33a037e4b46b3f7ec9ba05760145f288 diff --git a/src/HalfMove.cpp b/src/HalfMove.cpp index c1e4667..7e0e2cd 100644 --- a/src/HalfMove.cpp +++ b/src/HalfMove.cpp @@ -2,7 +2,7 @@ namespace pgnp { -HalfMove::HalfMove() : count(-1), isBlack(false), MainLine(NULL), NAG(0) {} +HalfMove::HalfMove() : count(-1), isBlack(false), NAG(0), MainLine(NULL) {} HalfMove::~HalfMove() { delete MainLine; diff --git a/src/PGN.cpp b/src/PGN.cpp index 831de6e..1620292 100644 --- a/src/PGN.cpp +++ b/src/PGN.cpp @@ -30,7 +30,7 @@ namespace pgnp { -PGN::PGN() : LastGameEndLoc(0), moves(NULL) {} +PGN::PGN() : moves(NULL), LastGameEndLoc(0) {} PGN::~PGN() { if (moves != NULL) @@ -124,7 +124,7 @@ void PGN::ParseNextGame() { } void PGN::STRCheck() { - int i = 0; + long unsigned int i = 0; // Locate Event tag while (i < tagkeys.size()) { if (tagkeys[i] == "Event") {