From: Jason Merrill Date: Wed, 23 Mar 2022 16:22:20 +0000 (-0400) Subject: c++: tweak PR105006 fix X-Git-Tag: basepoints/gcc-13~525 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8cd3edc0fc6c02a732dcecf519c22d835e5f422;p=thirdparty%2Fgcc.git c++: tweak PR105006 fix Checking dependent_type_p avoids needing to walk the overloads in cases where it would not be possible to find a dependent using. PR c++/105006 gcc/cp/ChangeLog: * name-lookup.cc (lookup_using_decl): Check that scope is a dependent type before looking for dependent using. --- diff --git a/gcc/cp/name-lookup.cc b/gcc/cp/name-lookup.cc index ea947fabb7ef..3c7b626350f4 100644 --- a/gcc/cp/name-lookup.cc +++ b/gcc/cp/name-lookup.cc @@ -5667,7 +5667,7 @@ lookup_using_decl (tree scope, name_lookup &lookup) /* If the lookup in the base contains a dependent using, this using is also dependent. */ - if (!dependent_p && lookup.value) + if (!dependent_p && lookup.value && dependent_type_p (scope)) { tree val = lookup.value; if (tree fns = maybe_get_fns (val))