diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-15 06:28:11 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-15 06:28:11 +0000 |
commit | 2b49d1f0ad790a8a5d514af1be211591a746cb73 (patch) | |
tree | 966fe5f0becde3d5743aac41725e515d18271139 /include/clang/Basic/Module.h | |
parent | 50e6b18f99c45b31e6216ab221f6b3911b24fa1f (diff) |
Introduce the notion of excluded headers into the module map
description. Previously, one could emulate this behavior by placing
the header in an always-unavailable submodule, but Argyrios guilted me
into expressing this idea properly.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165921 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/Module.h')
-rw-r--r-- | include/clang/Basic/Module.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Basic/Module.h b/include/clang/Basic/Module.h index faaca22bd0..b6b088c1f7 100644 --- a/include/clang/Basic/Module.h +++ b/include/clang/Basic/Module.h @@ -73,6 +73,9 @@ public: /// \brief The headers that are part of this module. llvm::SmallVector<const FileEntry *, 2> Headers; + /// \brief The headers that are explicitly excluded from this module. + llvm::SmallVector<const FileEntry *, 2> ExcludedHeaders; + /// \brief The top-level headers associated with this module. llvm::SmallSetVector<const FileEntry *, 2> TopHeaders; |