Remove compilation warnings

This commit is contained in:
Loic Guegan 2023-05-10 07:40:27 +02:00
parent 2df779cef1
commit ed52c7cb70
3 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 03ce4126cfa09ff0a55e70bdc44c1d5dd4035043 Subproject commit 14ac3bba33a037e4b46b3f7ec9ba05760145f288

View file

@ -2,7 +2,7 @@
namespace pgnp { namespace pgnp {
HalfMove::HalfMove() : count(-1), isBlack(false), MainLine(NULL), NAG(0) {} HalfMove::HalfMove() : count(-1), isBlack(false), NAG(0), MainLine(NULL) {}
HalfMove::~HalfMove() { HalfMove::~HalfMove() {
delete MainLine; delete MainLine;

View file

@ -30,7 +30,7 @@
namespace pgnp { namespace pgnp {
PGN::PGN() : LastGameEndLoc(0), moves(NULL) {} PGN::PGN() : moves(NULL), LastGameEndLoc(0) {}
PGN::~PGN() { PGN::~PGN() {
if (moves != NULL) if (moves != NULL)
@ -124,7 +124,7 @@ void PGN::ParseNextGame() {
} }
void PGN::STRCheck() { void PGN::STRCheck() {
int i = 0; long unsigned int i = 0;
// Locate Event tag // Locate Event tag
while (i < tagkeys.size()) { while (i < tagkeys.size()) {
if (tagkeys[i] == "Event") { if (tagkeys[i] == "Event") {