Commit c67a1c46 by Jason Merrill Committed by Jason Merrill

* name-lookup.c (push_class_level_binding): Sanity check.

From-SVN: r151931
parent 4b51caf2
2009-09-21 Jason Merrill <jason@redhat.com>
* name-lookup.c (push_class_level_binding): Sanity check.
2009-09-18 Jason Merrill <jason@redhat.com>
* decl2.c (determine_visibility): Make anonymous types internal.
......
......@@ -2751,6 +2751,9 @@ push_class_level_binding (tree name, tree x)
/* Check for invalid member names. */
gcc_assert (TYPE_BEING_DEFINED (current_class_type));
/* Check that we're pushing into the right binding level. */
gcc_assert (current_class_type == class_binding_level->this_entity);
/* We could have been passed a tree list if this is an ambiguous
declaration. If so, pull the declaration out because
check_template_shadow will not handle a TREE_LIST. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment