[NFC] Fix a gcc build break by using an explict constructor.

This commit is contained in:
Hongtao Yu 2020-12-10 11:20:46 -08:00
parent 57db6d20c6
commit 248b279cf0
1 changed files with 1 additions and 1 deletions

View File

@ -5833,7 +5833,7 @@ bool AsmParser::parseDirectivePseudoProbe() {
return true;
}
InlineSite Site = {CallerGuid, CallerProbeId};
InlineSite Site(CallerGuid, CallerProbeId);
InlineStack.push_back(Site);
}