Skip to content

Commit f882a20

Browse files
committed
[MERGE #4821 @kfarnung] Fix build break in TTD
Merge pull request #4821 from kfarnung:buildfix 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.
2 parents 8b56bb5 + 5455709 commit f882a20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/Runtime/Debug/TTSnapObjects.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2161,7 +2161,7 @@ namespace TTD
21612161
}
21622162
}
21632163

2164-
Js::CallInfo callInfo(static_cast<Js::CallFlags>(generatorInfo->arguments_callInfo_flags), generatorInfo->arguments_callInfo_count, false /*unusedBool*/);
2164+
Js::CallInfo callInfo(static_cast<Js::CallFlags>(generatorInfo->arguments_callInfo_flags), generatorInfo->arguments_callInfo_count);
21652165

21662166
Js::Arguments arguments(callInfo, unsafe_write_barrier_cast<Js::Var*>(argVals));
21672167

0 commit comments

Comments
 (0)