diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-01-15 01:15:58 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-01-15 01:15:58 +0000 |
commit | c7793c73ba8a343de3f2552d984851985a46f159 (patch) | |
tree | 6028fb693f32a9f51ccb6d59e84a75817cdceac1 /include/clang/Serialization/ASTBitCodes.h | |
parent | 2be29f423acad3bbe39099a78db2805acb5bdf17 (diff) |
Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr,
that captures the substitution of a non-type template argument pack
for a non-type template parameter pack within a pack expansion that
cannot be fully expanded. This follows the approach taken by
SubstTemplateTypeParmPackType.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 6ef4dbeb0c..7a9019f384 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -936,7 +936,8 @@ namespace clang { EXPR_BINARY_TYPE_TRAIT, // BinaryTypeTraitExpr EXPR_PACK_EXPANSION, // PackExpansionExpr - EXPR_SIZEOF_PACK // SizeOfPackExpr + EXPR_SIZEOF_PACK, // SizeOfPackExpr + EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK // SubstNonTypeTemplateParmPackExpr }; /// \brief The kinds of designators that can occur in a |