diff options
author | Eric Liu <ioeric@google.com> | 2018-09-24 14:52:11 +0000 |
---|---|---|
committer | Eric Liu <ioeric@google.com> | 2018-09-24 14:52:11 +0000 |
commit | 495847ad7774b165495e06d201c47a0a5907863c (patch) | |
tree | af55a81c650595788aa58f77ee3344f42c3adc04 /clang/lib/Basic/VirtualFileSystem.cpp | |
parent | 8fb7bb24827b3ae1285d4f67c11c90e7d748e889 (diff) | |
download | bcm5719-llvm-495847ad7774b165495e06d201c47a0a5907863c.tar.gz bcm5719-llvm-495847ad7774b165495e06d201c47a0a5907863c.zip |
[VFS] Use llvm::StringMap instead of std::map. NFC
llvm-svn: 342889
Diffstat (limited to 'clang/lib/Basic/VirtualFileSystem.cpp')
-rw-r--r-- | clang/lib/Basic/VirtualFileSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Basic/VirtualFileSystem.cpp b/clang/lib/Basic/VirtualFileSystem.cpp index e5eb5e47fdf..56fc3363340 100644 --- a/clang/lib/Basic/VirtualFileSystem.cpp +++ b/clang/lib/Basic/VirtualFileSystem.cpp @@ -566,7 +566,7 @@ public: class InMemoryDirectory : public InMemoryNode { Status Stat; - std::map<std::string, std::unique_ptr<InMemoryNode>> Entries; + llvm::StringMap<std::unique_ptr<InMemoryNode>> Entries; public: InMemoryDirectory(Status Stat) |