From 5455709160f0fcd5a22bcfd0163e2ad21222ec0f Mon Sep 17 00:00:00 2001 From: Kyle Farnung Date: Wed, 14 Mar 2018 11:34:04 -0700 Subject: [PATCH] Fix build break in TTD A recent change removed an unused parameter from the Js::CallInfo constructor. TTD was still using this constructor in release/1.9 so the build broke after the change merged in. --- lib/Runtime/Debug/TTSnapObjects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Runtime/Debug/TTSnapObjects.cpp b/lib/Runtime/Debug/TTSnapObjects.cpp index 37d53578af5..faccb10ba9a 100644 --- a/lib/Runtime/Debug/TTSnapObjects.cpp +++ b/lib/Runtime/Debug/TTSnapObjects.cpp @@ -2161,7 +2161,7 @@ namespace TTD } } - Js::CallInfo callInfo(static_cast(generatorInfo->arguments_callInfo_flags), generatorInfo->arguments_callInfo_count, false /*unusedBool*/); + Js::CallInfo callInfo(static_cast(generatorInfo->arguments_callInfo_flags), generatorInfo->arguments_callInfo_count); Js::Arguments arguments(callInfo, unsafe_write_barrier_cast(argVals));