summaryrefslogtreecommitdiffstats
path: root/clang/lib/Basic/VirtualFileSystem.cpp
diff options
context:
space:
mode:
authorEric Liu <ioeric@google.com>2018-09-24 14:52:11 +0000
committerEric Liu <ioeric@google.com>2018-09-24 14:52:11 +0000
commit495847ad7774b165495e06d201c47a0a5907863c (patch)
treeaf55a81c650595788aa58f77ee3344f42c3adc04 /clang/lib/Basic/VirtualFileSystem.cpp
parent8fb7bb24827b3ae1285d4f67c11c90e7d748e889 (diff)
downloadbcm5719-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.cpp2
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)
OpenPOWER on IntegriCloud