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:
parent
a84cf95e58
commit
a9eb365da8
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user