diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-12-02 18:58:38 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-12-02 18:58:38 +0000 |
commit | af13bfc3b40aa4a46f4e71d200ecfb10f45297fc (patch) | |
tree | 165d634ec08b0322c2a9966d40b8f944a512791d /include/clang/Serialization/ASTBitCodes.h | |
parent | a015cab273705d1198d13e8389c2f4775f539a8b (diff) |
Implement (de-)serialization of the set of exported modules in a
module map.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145695 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 3cfafd192e..88e0650c04 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -512,7 +512,10 @@ namespace clang { /// \brief Specifies a header that falls into this (sub)module. SUBMODULE_HEADER = 2, /// \brief Metadata for submodules as a whole. - SUBMODULE_METADATA = 3 + SUBMODULE_METADATA = 3, + /// \brief Specifies the submodules that are re-exported from this + /// submodule. + SUBMODULE_EXPORTS = 4 }; /// \defgroup ASTAST AST file AST constants |