gcc/cp/ChangeLog:
* pt.c (make_pack_expansion): Make sure to initialize
ppd.type_pack_expansion_p.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@231904
138bc75d-0d04-0410-961f-
82ee72b054a4
+2015-12-22 Patrick Palka <ppalka@gcc.gnu.org>
+
+ * pt.c (make_pack_expansion): Make sure to initialize
+ ppd.type_pack_expansion_p.
+
2015-12-21 David Malcolm <dmalcolm@redhat.com>
* typeck.c (cp_build_binary_op): Update for change in signature
class expansion. */
ppd.visited = new hash_set<tree>;
ppd.parameter_packs = ¶meter_packs;
+ ppd.type_pack_expansion_p = true;
+ gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
&ppd, ppd.visited);