declare two member variables in the opposite order so we don't get a warning about initializing them backwards

This commit is contained in:
Marty Rosenberg 2012-06-19 13:58:04 -07:00
parent 5067b26960
commit 50e52c9dae

View File

@ -165,8 +165,8 @@ class IonContext
return assemblerCount_++;
}
private:
int assemblerCount_;
IonContext *prev_;
int assemblerCount_;
};
extern IonOptions js_IonOptions;