mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 14:10:41 +00:00
Fix build error with ambiguity of size_t.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268948 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
13fc4ae0bf
commit
2391618ef9
@ -350,7 +350,7 @@ static Error dumpDbiStream(ScopedPrinter &P, PDBFile &File) {
|
||||
for (auto &S : ModS.symbols()) {
|
||||
DictScope SD(P);
|
||||
P.printHex("Kind", static_cast<uint32_t>(S.Type));
|
||||
P.printNumber("Length", S.Length);
|
||||
P.printNumber("Length", static_cast<uint32_t>(S.Length));
|
||||
P.printBinaryBlock("Bytes", S.Data);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user