Selaa lähdekoodia

Fix compiler warning as error
Improper second parameter for call to SetFullJitThreshold

Thomas Moore 8 vuotta sitten
vanhempi
sitoutus
e369360d8d
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      lib/Runtime/Base/FunctionExecutionStateMachine.cpp

+ 1 - 1
lib/Runtime/Base/FunctionExecutionStateMachine.cpp

@@ -142,7 +142,7 @@ namespace Js
         this->fullJitThreshold = fullJitThreshold - scale;
         SetInterpretedCount(0);
         SetExecutionMode(GetDefaultInterpreterExecutionMode());
-        SetFullJitThreshold(fullJitThreshold, owner);
+        SetFullJitThreshold(fullJitThreshold);
         TryTransitionToNextInterpreterExecutionMode();
     }