diff options
author | Marek Polacek <polacek@redhat.com> | 2018-08-13 15:46:42 +0000 |
---|---|---|
committer | Marek Polacek <mpolacek@gcc.gnu.org> | 2018-08-13 15:46:42 +0000 |
commit | e6a1e5fe7346458208ede97741382061a6191024 (patch) | |
tree | d5b2c43f0745495e0a950a70183cf0936c71db04 /gcc/cp/lambda.c | |
parent | 27a98312c54b6c00a4e7deb1bf663547cd4f2dcc (diff) | |
download | gcc-e6a1e5fe7346458208ede97741382061a6191024.zip gcc-e6a1e5fe7346458208ede97741382061a6191024.tar.gz gcc-e6a1e5fe7346458208ede97741382061a6191024.tar.bz2 |
P0806R2 - Deprecate implicit capture of this via [=]
P0806R2 - Deprecate implicit capture of this via [=]
* lambda.c (add_default_capture): Formatting fixes. Warn about
deprecated implicit capture of this via [=].
* g++.dg/cpp2a/lambda-this1.C: New test.
* g++.dg/cpp2a/lambda-this2.C: New test.
* g++.dg/cpp2a/lambda-this3.C: New test.
From-SVN: r263508
Diffstat (limited to 'gcc/cp/lambda.c')
-rw-r--r-- | gcc/cp/lambda.c | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/gcc/cp/lambda.c b/gcc/cp/lambda.c index 54fc3ee..25a4d6f 100644 --- a/gcc/cp/lambda.c +++ b/gcc/cp/lambda.c @@ -695,14 +695,10 @@ tree add_default_capture (tree lambda_stack, tree id, tree initializer) { bool this_capture_p = (id == this_identifier); - tree var = NULL_TREE; - tree saved_class_type = current_class_type; - tree node; - - for (node = lambda_stack; + for (tree node = lambda_stack; node; node = TREE_CHAIN (node)) { @@ -720,6 +716,19 @@ add_default_capture (tree lambda_stack, tree id, tree initializer) == CPLD_REFERENCE)), /*explicit_init_p=*/false); initializer = convert_from_reference (var); + + /* Warn about deprecated implicit capture of this via [=]. */ + if (cxx_dialect >= cxx2a + && this_capture_p + && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) == CPLD_COPY + && !in_system_header_at (LAMBDA_EXPR_LOCATION (lambda))) + { + if (warning_at (LAMBDA_EXPR_LOCATION (lambda), OPT_Wdeprecated, + "implicit capture of %qE via %<[=]%> is deprecated " + "in C++20", this_identifier)) + inform (LAMBDA_EXPR_LOCATION (lambda), "add explicit %<this%> or " + "%<*this%> capture"); + } } current_class_type = saved_class_type; |