1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[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 a84cf95e58
commit a9eb365da8

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: