From d30332fed4b4b2be82dd0402381acf9ac93786a9 Mon Sep 17 00:00:00 2001 From: "beard%netscape.com" Date: Fri, 28 Apr 2000 02:23:08 +0000 Subject: [PATCH] reordered inheritance graph of Linkage. --- js/js2/interpreter.cpp | 2 +- js2/src/interpreter.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/js2/interpreter.cpp b/js/js2/interpreter.cpp index 301a9b4beac7..da153d0db308 100644 --- a/js/js2/interpreter.cpp +++ b/js/js2/interpreter.cpp @@ -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; diff --git a/js2/src/interpreter.cpp b/js2/src/interpreter.cpp index 301a9b4beac7..da153d0db308 100644 --- a/js2/src/interpreter.cpp +++ b/js2/src/interpreter.cpp @@ -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;