[NFC] Fix build break by a initializer list converting error

This commit is contained in:
wlei 2021-01-13 14:27:03 -08:00
parent 74a42aedfe
commit 35debdfcac
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ void PseudoProbeDecoder::buildAddress2ProbeMap(const uint8_t *Start,
Index = readUnsignedNumber<uint32_t>();
}
// Switch/add to a new tree node(inlinee)
Cur = Cur->getOrAddNode({Cur->GUID, Index});
Cur = Cur->getOrAddNode(std::make_tuple(Cur->GUID, Index));
// Read guid
Cur->GUID = readUnencodedNumber<uint64_t>();
// Read number of probes in the current node.