From: Jeff Cohen Date: Thu, 29 Mar 2007 17:28:31 +0000 (+0000) Subject: uniqueID is a uint64_t (caught by VC++) X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b9681893c8e52da55a28025db28894a46f8317b7;p=oota-llvm.git 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 --- diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h index 578bb3cca08..8d2f39107d4 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