[llvm-commits] CVS: llvm/include/llvm/System/Path.h
Jeff Cohen
jeffc at jolt-lang.org
Thu Mar 29 10:28:48 PDT 2007
Changes in directory llvm/include/llvm/System:
Path.h updated: 1.46 -> 1.47
---
Log message:
uniqueID is a uint64_t (caught by VC++)
---
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.46 llvm/include/llvm/System/Path.h:1.47
--- llvm/include/llvm/System/Path.h:1.46 Thu Mar 29 12:00:31 2007
+++ llvm/include/llvm/System/Path.h Thu Mar 29 12:28:31 2007
@@ -52,7 +52,7 @@
uint32_t getMode() const { return mode; }
uint32_t getUser() const { return user; }
uint32_t getGroup() const { return group; }
- uint32_t getUniqueID() const { return uniqueID; }
+ uint64_t getUniqueID() const { return uniqueID; }
};
/// This class provides an abstraction for the path to a file or directory
More information about the llvm-commits
mailing list