diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 15:37:27 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 15:37:27 +0000 |
commit | f56e8991f44f867eb8ea29b0d40c991d1326615b (patch) | |
tree | 81fbbe34bc2490d67f799cedb8176d15a53a6b97 /clang/lib/Basic/FileManager.cpp | |
parent | 2d37bf843c77bdbf0feaf0c972c509443f5cca7d (diff) | |
download | bcm5719-llvm-f56e8991f44f867eb8ea29b0d40c991d1326615b.tar.gz bcm5719-llvm-f56e8991f44f867eb8ea29b0d40c991d1326615b.zip |
clang: Fix typo in comment
llvm-svn: 369536
Diffstat (limited to 'clang/lib/Basic/FileManager.cpp')
-rw-r--r-- | clang/lib/Basic/FileManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Basic/FileManager.cpp b/clang/lib/Basic/FileManager.cpp index 4c470b05a63..2666868bcf6 100644 --- a/clang/lib/Basic/FileManager.cpp +++ b/clang/lib/Basic/FileManager.cpp @@ -483,7 +483,7 @@ void FileManager::invalidateCache(const FileEntry *Entry) { // invalidation of the whole cache. // // FIXME: This is broken. We sometimes have the same FileEntry* shared - // betweeen multiple SeenFileEntries, so this can leave dangling pointers. + // between multiple SeenFileEntries, so this can leave dangling pointers. UniqueRealFiles.erase(Entry->getUniqueID()); } |