Bug 1013531: Fix build warning in GCRuntime ctor; r=jonco

This commit is contained in:
Benjamin Bouvier 2014-06-02 16:02:12 +02:00
parent db7080c070
commit 75fcbfc70d

View File

@ -1115,14 +1115,14 @@ GCRuntime::GCRuntime(JSRuntime *rt) :
mallocBytes(0),
mallocGCTriggered(false),
scriptAndCountsVector(nullptr),
helperState(rt),
inUnsafeRegion(0),
alwaysPreserveCode(false),
#ifdef DEBUG
noGCOrAllocationCheck(0),
#endif
lock(nullptr),
lockOwner(nullptr),
inUnsafeRegion(0)
helperState(rt)
{
}