diff options
Diffstat (limited to 'gcc/cp/constexpr.c')
-rw-r--r-- | gcc/cp/constexpr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/constexpr.c b/gcc/cp/constexpr.c index 1390405..171c389 100644 --- a/gcc/cp/constexpr.c +++ b/gcc/cp/constexpr.c @@ -5369,7 +5369,7 @@ potential_constant_expression_1 (tree t, bool want_rval, bool strict, bool now, case VAR_DECL: if (DECL_HAS_VALUE_EXPR_P (t)) { - if (now && is_normal_capture_proxy (t)) + if (now && is_capture_proxy_with_ref (t)) { /* -- in a lambda-expression, a reference to this or to a variable with automatic storage duration defined outside that |