summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-06-18 19:46:19 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-06-18 19:46:19 +0000
commit2e0f70bdd8814eefb752f1d0221800cbdbd8d1f5 (patch)
tree2e0d0c931047c90e9ddc2b48a57ffb3febadd085 /include
parent605510d16ead87dc48a363addb8a99eca6e3f17c (diff)
downloadllvm-2e0f70bdd8814eefb752f1d0221800cbdbd8d1f5.tar.gz
llvm-2e0f70bdd8814eefb752f1d0221800cbdbd8d1f5.tar.bz2
llvm-2e0f70bdd8814eefb752f1d0221800cbdbd8d1f5.tar.xz
Remove uniqueID from PathV1.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184219 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/PathV1.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Support/PathV1.h b/include/llvm/Support/PathV1.h
index eaf2550869..b38b1b090e 100644
--- a/include/llvm/Support/PathV1.h
+++ b/include/llvm/Support/PathV1.h
@@ -45,19 +45,17 @@ namespace sys {
uint32_t mode; ///< Mode of the file, if applicable
uint32_t user; ///< User ID of owner, if applicable
uint32_t group; ///< Group ID of owner, if applicable
- uint64_t uniqueID; ///< A number to uniquely ID this file
bool isDir : 1; ///< True if this is a directory.
bool isFile : 1; ///< True if this is a file.
FileStatus() : fileSize(0), modTime(0,0), mode(0777), user(999),
- group(999), uniqueID(0), isDir(false), isFile(false) { }
+ group(999), isDir(false), isFile(false) { }
TimeValue getTimestamp() const { return modTime; }
uint64_t getSize() const { return fileSize; }
uint32_t getMode() const { return mode; }
uint32_t getUser() const { return user; }
uint32_t getGroup() const { return group; }
- uint64_t getUniqueID() const { return uniqueID; }
};
/// This class provides an abstraction for the path to a file or directory