Reorder fields in the same order they are initialized to shut up gcc warnings.
This commit is contained in:
parent
5f4d43f738
commit
0c671d2a4b
|
@ -77,8 +77,8 @@ public:
|
||||||
class EMUFILE_MEMORY : public EMUFILE {
|
class EMUFILE_MEMORY : public EMUFILE {
|
||||||
protected:
|
protected:
|
||||||
std::vector<u8> *vec;
|
std::vector<u8> *vec;
|
||||||
s32 pos, len;
|
|
||||||
bool ownvec;
|
bool ownvec;
|
||||||
|
s32 pos, len;
|
||||||
|
|
||||||
void reserve(u32 amt) {
|
void reserve(u32 amt) {
|
||||||
if(vec->size() < amt)
|
if(vec->size() < amt)
|
||||||
|
|
Loading…
Reference in New Issue