diff options
author | Sean Hunt <scshunt@csclub.uwaterloo.ca> | 2011-05-04 01:19:08 +0000 |
---|---|---|
committer | Sean Hunt <scshunt@csclub.uwaterloo.ca> | 2011-05-04 01:19:08 +0000 |
commit | 156b640c67300f2b70eb11102aa393a610798cc6 (patch) | |
tree | 95a65c3a0d28e94f42a98b0a6c3641128cc5cff9 /include/clang/Serialization/ASTBitCodes.h | |
parent | fa74c2344addf92826c938758fb4dc612a004eb9 (diff) |
Implement serialization of delegating constructors.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130822 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 1cfd458a38..0905b43f87 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -1003,6 +1003,15 @@ namespace clang { DESIG_ARRAY_RANGE = 3 }; + /// \brief The different kinds of data that can occur in a + /// CtorInitializer. + enum CtorInitializerType { + CTOR_INITIALIZER_BASE, + CTOR_INITIALIZER_DELEGATING, + CTOR_INITIALIZER_MEMBER, + CTOR_INITIALIZER_INDIRECT_MEMBER + }; + /// @} } } // end namespace clang |