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

From-SVN: r151931
This commit is contained in:
Jason Merrill 2009-09-21 12:11:19 -04:00 committed by Jason Merrill
parent 4b51caf2da
commit c67a1c461a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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. */