diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-29 21:55:38 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-29 21:55:38 +0000 |
commit | e0913798bca5724d2852386d369d1aa830f97173 (patch) | |
tree | 375bf0b8c36f8f9b7a79118c096640edd73b8090 /lib/Support | |
parent | 1fde907244792571c1ad2a0ec631af9fcf803f5b (diff) | |
download | external_llvm-e0913798bca5724d2852386d369d1aa830f97173.zip external_llvm-e0913798bca5724d2852386d369d1aa830f97173.tar.gz external_llvm-e0913798bca5724d2852386d369d1aa830f97173.tar.bz2 |
Make file_status::getUniqueID const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187383 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/Unix/Path.inc | 2 | ||||
-rw-r--r-- | lib/Support/Windows/Path.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Support/Unix/Path.inc b/lib/Support/Unix/Path.inc index 0c4518c..4dcfa09 100644 --- a/lib/Support/Unix/Path.inc +++ b/lib/Support/Unix/Path.inc @@ -293,7 +293,7 @@ TimeValue file_status::getLastModificationTime() const { return Ret; } -UniqueID file_status::getUniqueID() { +UniqueID file_status::getUniqueID() const { return UniqueID(fs_st_dev, fs_st_ino); } diff --git a/lib/Support/Windows/Path.inc b/lib/Support/Windows/Path.inc index f3460e4..7cb95c4 100644 --- a/lib/Support/Windows/Path.inc +++ b/lib/Support/Windows/Path.inc @@ -269,7 +269,7 @@ std::string getMainExecutable(const char *argv0, void *MainExecAddr) { return ret != MAX_PATH ? pathname : ""; } -UniqueID file_status::getUniqueID() { +UniqueID file_status::getUniqueID() const { // The file is uniquely identified by the volume serial number along // with the 64-bit file identifier. uint64_t FileID = (static_cast<uint64_t>(FileIndexHigh) << 32ULL) | |