Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void AnalyzeNativeBinaryAndPdb(BinaryAnalyzerContext context)
if (omDetails.GetOptionValue(pchOptionSwitches, OrderOfPrecedence.FirstWins, ref pchHeaderFile) == true)
{
// Now check to see if a pch file name was specified using /Fp:
string[] pchFileNameOptions = { "/Fp:" };
string[] pchFileNameOptions = { "/Fp" };
if (omDetails.GetOptionValue(pchFileNameOptions, OrderOfPrecedence.FirstWins, ref pchFileName) != true)
{
// no pch filename specified, so the filename defaults to the pchHeaderFile with the extension swapped to ".pch"
Expand Down
Loading