[VFS] Use llvm::StringMap instead of std::map. NFC
authorEric Liu <ioeric@google.com>
Mon, 24 Sep 2018 14:52:11 +0000 (14:52 +0000)
committerEric Liu <ioeric@google.com>
Mon, 24 Sep 2018 14:52:11 +0000 (14:52 +0000)
llvm-svn: 342889

clang/lib/Basic/VirtualFileSystem.cpp

index e5eb5e4..56fc336 100644 (file)
@@ -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)