diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2007-03-29 17:28:31 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2007-03-29 17:28:31 +0000 |
commit | b9681893c8e52da55a28025db28894a46f8317b7 (patch) | |
tree | 7f66c54c4c40f4efb0cdb2f0e099a305c8891fe6 /include/llvm/System | |
parent | 84892be310e1c578f0cf093e51dd4c9c5d14ac84 (diff) | |
download | external_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.h | 2 |
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 |