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/Serialization/ASTBitCodes.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/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index a0c62bb296..68b8bf00cc 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -565,7 +565,10 @@ namespace clang { /// submodule. SUBMODULE_EXPORTS = 7, /// \brief Specifies a required feature. - SUBMODULE_REQUIRES = 8 + SUBMODULE_REQUIRES = 8, + /// \brief Specifies a header that has been explicitly excluded + /// from this submodule. + SUBMODULE_EXCLUDED_HEADER = 9 }; /// \brief Record types used within a comments block. |