diff options
author | Axel Naumann <Axel.Naumann@cern.ch> | 2012-07-10 16:50:27 +0000 |
---|---|---|
committer | Axel Naumann <Axel.Naumann@cern.ch> | 2012-07-10 16:50:27 +0000 |
commit | 5ba0559f2f0ddd62de16547af514dbaf93b79585 (patch) | |
tree | c9d6ae1d5e7d2133ac0093fd1ee379cc94ff434c /include/clang/Basic/FileManager.h | |
parent | 783db50d09cf2df90679331cca6c7254f4a2fbc5 (diff) |
Improve r159256 following Chandler's comments:
Implement UniqueFileContainer::erase(), camelCase, add comment on future optimizations of the cache versus de-optimizations of invalidations.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/FileManager.h')
-rw-r--r-- | include/clang/Basic/FileManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/FileManager.h b/include/clang/Basic/FileManager.h index deb9caf466..ea58e2d76a 100644 --- a/include/clang/Basic/FileManager.h +++ b/include/clang/Basic/FileManager.h @@ -232,7 +232,7 @@ public: bool getNoncachedStatValue(StringRef Path, struct stat &StatBuf); /// \brief Remove the real file \p Entry from the cache. - void InvalidateCache(const FileEntry* Entry); + void invalidateCache(const FileEntry *Entry); /// \brief If path is not absolute and FileSystemOptions set the working /// directory, the path is modified to be relative to the given |