Skip to content

Commit

Permalink
[MERGE #4821 @kfarnung] Fix build break in TTD
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kfarnung committed Mar 14, 2018
2 parents 8b56bb5 + 5455709 commit f882a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Runtime/Debug/TTSnapObjects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2161,7 +2161,7 @@ namespace TTD
}
}

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

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

Expand Down

0 comments on commit f882a20

Please sign in to comment.