mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-05 17:46:25 +02:00
Remove compilation warnings
This commit is contained in:
parent
2df779cef1
commit
ed52c7cb70
3 changed files with 4 additions and 4 deletions
|
@ -1 +1 @@
|
|||
Subproject commit 03ce4126cfa09ff0a55e70bdc44c1d5dd4035043
|
||||
Subproject commit 14ac3bba33a037e4b46b3f7ec9ba05760145f288
|
|
@ -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;
|
||||
|
|
|
@ -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") {
|
||||
|
|
Loading…
Add table
Reference in a new issue