diff options
author | Douglas Gregor <dgregor@apple.com> | 2013-01-10 01:43:00 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2013-01-10 01:43:00 +0000 |
commit | 7005b907ea159c8e74e81f85269777429bc18d3c (patch) | |
tree | 8924bfcc156a1164176e9a3d9eca1eee045d4f30 /include/clang/Lex/ModuleMap.h | |
parent | 880e538536d1a7597eb5805d67a08e3941577c7f (diff) |
Rework the realpath nonsense for framework lookups to deal more
uniformly with symlinks between top-level and embedded frameworks.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172030 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/ModuleMap.h')
-rw-r--r-- | include/clang/Lex/ModuleMap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Lex/ModuleMap.h b/include/clang/Lex/ModuleMap.h index b24c6d732f..96a53849cf 100644 --- a/include/clang/Lex/ModuleMap.h +++ b/include/clang/Lex/ModuleMap.h @@ -111,6 +111,10 @@ class ModuleMap { /// framework modules from within those directories. llvm::DenseMap<const DirectoryEntry *, InferredDirectory> InferredDirectories; + /// \brief Describes whether we haved parsed a particular file as a module + /// map. + llvm::DenseMap<const FileEntry *, bool> ParsedModuleMap; + friend class ModuleMapParser; /// \brief Resolve the given export declaration into an actual export |