diff options
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/TypeDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp b/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp index df9f8f244ba..b675d3c2c6d 100644 --- a/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp +++ b/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp @@ -520,7 +520,7 @@ void CVTypeDumperImpl::visitUdtSourceLineRecord(TypeLeafKind Leaf, void CVTypeDumperImpl::visitBuildInfoRecord(TypeLeafKind Leaf, BuildInfoRecord &Args) { - W.printNumber("NumArgs", Args.getArgs().size()); + W.printNumber("NumArgs", static_cast<uint32_t>(Args.getArgs().size())); ListScope Arguments(W, "Arguments"); for (auto Arg : Args.getArgs()) { |