1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

[ORC] Fix narrowing-in-initializer-list warnings.

This commit is contained in:
Lang Hames 2021-06-15 21:39:16 +10:00
parent 8b99b0a62e
commit 0c8cd2ec6f

View File

@ -383,7 +383,7 @@ public:
Data = IB.data();
if (!IB.skip(Size))
return false;
S = {Data, Size};
S = StringRef(Data, Size);
return true;
}
};