+2019-08-02 Marek Polacek <polacek@redhat.com>
+
+ PR c++/91230 - wrong error with __PRETTY_FUNCTION__ and generic lambda.
+ * pt.c (value_dependent_expression_p): Consider __PRETTY_FUNCTION__
+ inside a template function value-dependent.
+
2019-08-02 Paolo Carlini <paolo.carlini@oracle.com>
* tree.c (handle_nodiscard_attribute): Do not warn about nodiscard
if (DECL_HAS_VALUE_EXPR_P (expression))
{
tree value_expr = DECL_VALUE_EXPR (expression);
- if (value_dependent_expression_p (value_expr))
+ if (value_dependent_expression_p (value_expr)
+ /* __PRETTY_FUNCTION__ inside a template function is dependent
+ on the name of the function. */
+ || (DECL_PRETTY_FUNCTION_P (expression)
+ /* It might be used in a template, but not a template
+ function, in which case its DECL_VALUE_EXPR will be
+ "top level". */
+ && value_expr == error_mark_node))
return true;
}
return false;
+2019-08-02 Marek Polacek <polacek@redhat.com>
+
+ PR c++/91230 - wrong error with __PRETTY_FUNCTION__ and generic lambda.
+ * g++.dg/cpp1y/lambda-generic-pretty1.C: New test.
+
2019-08-02 Uroš Bizjak <ubizjak@gmail.com>
PR target/91323