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:
Zachary Turner 2016-05-09 18:45:21 +00:00
parent 13fc4ae0bf
commit 2391618ef9

View File

@ -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);
}
}