forked from OSchip/llvm-project
Use unsigned long long instead of uint64_t to appease bots
llvm-svn: 259748
This commit is contained in:
parent
4c3eee78f1
commit
d5c0e4d69b
|
@ -85,7 +85,7 @@ bool MachOLinkingContext::parsePackedVersion(StringRef str, uint64_t &result) {
|
|||
SmallVector<StringRef, 5> parts;
|
||||
llvm::SplitString(str, parts, ".");
|
||||
|
||||
uint64_t num;
|
||||
unsigned long long num;
|
||||
if (llvm::getAsUnsignedInteger(parts[0], 10, num))
|
||||
return true;
|
||||
if (num > 0xFFFFFF)
|
||||
|
|
Loading…
Reference in New Issue