war on -Werror, part 1: constructor order, c++ actually cares

This commit is contained in:
Devin J. Pohly
2012-12-26 20:14:40 -05:00
parent 654be77960
commit d45afb73d8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -543,7 +543,7 @@ ulg crc32(ulg crc, const uch *buf, size_t len)
class TZip class TZip
{ {
public: public:
TZip() : pfout(NULL),zfis(0),hfin(0),writ(0),oerr(false),hasputcen(false),ooffset(0) TZip() : pfout(NULL),ooffset(0),oerr(false),writ(0),hasputcen(false),zfis(0),hfin(0)
{ {
} }
~TZip() ~TZip()
+1 -1
View File
@@ -1032,7 +1032,7 @@ public:
void AddToSong(); void AddToSong();
}; };
BMSSongLoader::BMSSongLoader( RString songDir, Song *outSong ): song(outSong), dir(songDir) BMSSongLoader::BMSSongLoader( RString songDir, Song *outSong ): dir(songDir), song(outSong)
{ {
} }