reordered inheritance graph of Linkage.

This commit is contained in:
beard%netscape.com 2000-04-28 02:23:08 +00:00
Родитель 4f2ea173c2
Коммит d30332fed4
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -112,7 +112,7 @@ struct Activation : public gc_base {
* Stores saved state from the *previous* activation, the current
* activation is alive and well in locals of the interpreter loop.
*/
struct Linkage : public gc_base, public Context::Frame {
struct Linkage : public Context::Frame, public gc_base {
Linkage* mNext; // next linkage in linkage stack.
InstructionIterator mReturnPC;
InstructionIterator mBasePC;

Просмотреть файл

@ -112,7 +112,7 @@ struct Activation : public gc_base {
* Stores saved state from the *previous* activation, the current
* activation is alive and well in locals of the interpreter loop.
*/
struct Linkage : public gc_base, public Context::Frame {
struct Linkage : public Context::Frame, public gc_base {
Linkage* mNext; // next linkage in linkage stack.
InstructionIterator mReturnPC;
InstructionIterator mBasePC;