From e38e3a8a5d1ddc92425379d77123351a7f615b66 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++) llvm-svn: 35465 --- 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