diff options
author | Jason Merrill <jason@redhat.com> | 2013-02-14 20:26:44 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2013-02-14 20:26:44 -0500 |
commit | 622aac0b88ed111d033a950b0737317d8c85bbcb (patch) | |
tree | 76ab66221ec193a48645ec9dfa45c26964b7f963 /gcc/common.opt | |
parent | ff9b4073cc6f8da73fd9affa494192e91c852e64 (diff) | |
download | gcc-622aac0b88ed111d033a950b0737317d8c85bbcb.zip gcc-622aac0b88ed111d033a950b0737317d8c85bbcb.tar.gz gcc-622aac0b88ed111d033a950b0737317d8c85bbcb.tar.bz2 |
re PR c++/55223 ([C++11] Default lambda expression of a templated class member)
PR c++/55223
gcc/cp/
* pt.c (tsubst_copy_and_build) [LAMBDA_EXPR]: Fix handling of
default argument scope.
* mangle.c (write_name): Likewise.
libiberty/
* cp-demangle.c (d_dump): Handle DEMANGLE_COMPONENT_DEFAULT_ARG.
(d_print_comp): Likewise.
From-SVN: r196065
Diffstat (limited to 'gcc/common.opt')
-rw-r--r-- | gcc/common.opt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/common.opt b/gcc/common.opt index b6592e0..3c7b415 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -785,7 +785,8 @@ Driver Undocumented ; argument. ; First selectable in G++ 4.7. ; -; 7: The version of the ABI that treats nullptr_t as a builtin type. +; 7: The version of the ABI that treats nullptr_t as a builtin type and +; corrects the mangling of lambdas in default argument scope. ; First selectable in G++ 4.8. ; Additional positive integers will be assigned as new versions of ; the ABI become the default version of the ABI. |