[pdb] Fix another narrowing conversion on x64 builds.

llvm-svn: 277026
This commit is contained in:
Zachary Turner 2016-07-28 19:47:04 +00:00
parent 9f73c20228
commit 6c9dbbd661
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public:
Error commit() const override { return Error::success(); }
MsfStreamLayout layout() const {
return MsfStreamLayout{Data.size(), Blocks};
return MsfStreamLayout{static_cast<uint32_t>(Data.size()), Blocks};
}
private: