Changes in directory llvm/include/llvm/System:

Path.h updated: 1.42 -> 1.43
---
Log message:

Unbreak VC++ build.

---
Diffs of the changes:  (+1 -1)

 Path.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/System/Path.h
diff -u llvm/include/llvm/System/Path.h:1.42 
llvm/include/llvm/System/Path.h:1.43
--- llvm/include/llvm/System/Path.h:1.42        Wed Aug 23 15:34:57 2006
+++ llvm/include/llvm/System/Path.h     Sun Nov  5 13:31:28 2006
@@ -47,7 +47,7 @@
                    group(999), isDir(false) { }
     
     TimeValue getTimestamp() const { return modTime; }
-    size_t getSize() const { return fileSize; }
+    uint64_t getSize() const { return fileSize; }
     uint32_t getMode() const { return mode; }
     uint32_t getUser() const { return user; }
     uint32_t getGroup() const { return group; }



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to