summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-07-29 21:55:38 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-07-29 21:55:38 +0000
commite0913798bca5724d2852386d369d1aa830f97173 (patch)
tree375bf0b8c36f8f9b7a79118c096640edd73b8090 /include
parent1fde907244792571c1ad2a0ec631af9fcf803f5b (diff)
downloadllvm-e0913798bca5724d2852386d369d1aa830f97173.tar.gz
llvm-e0913798bca5724d2852386d369d1aa830f97173.tar.bz2
llvm-e0913798bca5724d2852386d369d1aa830f97173.tar.xz
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 'include')
-rw-r--r--include/llvm/Support/FileSystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index 908878f1b6..60455a4114 100644
--- a/include/llvm/Support/FileSystem.h
+++ b/include/llvm/Support/FileSystem.h
@@ -186,7 +186,7 @@ public:
file_type type() const { return Type; }
perms permissions() const { return Perms; }
TimeValue getLastModificationTime() const;
- UniqueID getUniqueID();
+ UniqueID getUniqueID() const;
#if defined(LLVM_ON_UNIX)
uint32_t getUser() const { return fs_st_uid; }