]> granicus.if.org Git - clang/commitdiff
Try to unbreak the build on systems where uint64_t isn't something that StringRef...
authorDouglas Gregor <dgregor@apple.com>
Fri, 26 Aug 2011 23:57:29 +0000 (23:57 +0000)
committerDouglas Gregor <dgregor@apple.com>
Fri, 26 Aug 2011 23:57:29 +0000 (23:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138680 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ARCMigrate/FileRemapper.cpp

index 33a1db4d8376aa2c6659aa7d586644377315e540..2705f66472e7d55a96ae9ac1cd17e74117f22cc0 100644 (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];