diff options
Diffstat (limited to 'gcc/cp/parser.c')
-rw-r--r-- | gcc/cp/parser.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 09e19a2..eacf5e9 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -4738,8 +4738,9 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p, if (args) { koenig_p = true; - postfix_expression - = perform_koenig_lookup (postfix_expression, args); + if (!any_type_dependent_arguments_p (args)) + postfix_expression + = perform_koenig_lookup (postfix_expression, args); } else postfix_expression @@ -4761,8 +4762,9 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p, if (!DECL_FUNCTION_MEMBER_P (fn)) { koenig_p = true; - postfix_expression - = perform_koenig_lookup (postfix_expression, args); + if (!any_type_dependent_arguments_p (args)) + postfix_expression + = perform_koenig_lookup (postfix_expression, args); } } } |