aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/System
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2007-03-29 17:28:31 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2007-03-29 17:28:31 +0000
commitb9681893c8e52da55a28025db28894a46f8317b7 (patch)
tree7f66c54c4c40f4efb0cdb2f0e099a305c8891fe6 /include/llvm/System
parent84892be310e1c578f0cf093e51dd4c9c5d14ac84 (diff)
downloadexternal_llvm-b9681893c8e52da55a28025db28894a46f8317b7.zip
external_llvm-b9681893c8e52da55a28025db28894a46f8317b7.tar.gz
external_llvm-b9681893c8e52da55a28025db28894a46f8317b7.tar.bz2
uniqueID is a uint64_t (caught by VC++)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System')
-rw-r--r--include/llvm/System/Path.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h
index 578bb3c..8d2f391 100644
--- a/include/llvm/System/Path.h
+++ b/include/llvm/System/Path.h
@@ -52,7 +52,7 @@ namespace sys {
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