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
This commit is contained in:
Jeff Cohen 2007-03-29 17:28:31 +00:00
parent 84892be310
commit b9681893c8

View File

@ -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