Try to unbreak the build on systems where uint64_t isn't something that StringRef::getAsInteger can handle as its second argument

llvm-svn: 138680
This commit is contained in:
Douglas Gregor 2011-08-26 23:57:29 +00:00
parent 081425343b
commit 5be7a1c818
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ bool FileRemapper::initFromDisk(StringRef outputDir, Diagnostic &Diag,
for (unsigned idx = 0; idx+3 <= lines.size(); idx += 3) {
std::string fromFilename = lines[idx];
uint64_t timeModified;
unsigned long long timeModified;
lines[idx+1].getAsInteger(10, timeModified);
std::string toFilename = lines[idx+2];