From b9681893c8e52da55a28025db28894a46f8317b7 Mon Sep 17 00:00:00 2001 From: Jeff Cohen Date: Thu, 29 Mar 2007 17:28:31 +0000 Subject: [PATCH] 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 --- include/llvm/System/Path.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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