[llvm-commits] CVS: llvm/include/llvm/System/Path.h

Jeff Cohen jeffc at jolt-lang.org
Sun Nov 5 11:32:33 PST 2006



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; }






More information about the llvm-commits mailing list