Bug 1120655 - Bustage fix for single-arg constructor on a CLOSED TREE

--HG--
extra : rebase_source : 91856805ff90218db3e211761256fe183f408da8
This commit is contained in:
Steve Fink 2015-03-19 22:03:15 -07:00
parent cac47f4cca
commit 675eddf5d8

View File

@ -1313,7 +1313,7 @@ class AutoEnterIteration {
GCRuntime *gc;
public:
AutoEnterIteration(GCRuntime *gc_) : gc(gc_) {
explicit AutoEnterIteration(GCRuntime *gc_) : gc(gc_) {
++gc->numActiveZoneIters;
}