From 9ab2fcc16d674a876364159f5daa2258b42e6bb0 Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Thu, 21 May 2015 20:50:45 +0000 Subject: re PR c++/60943 ([C++14] Return type deduction interferes with ref-qualifiers) cp/ PR c++/60943 * decl2.c (change_return_type): Propagate FUNCTION_REF_QUALIFIED. testsuite/ * g++.dg/cpp1y/pr60943.C: New. From-SVN: r223502 --- gcc/cp/ChangeLog | 7 ++++++- gcc/cp/decl2.c | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'gcc/cp') diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 6460314..f9ede2d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2015-05-21 Nathan Sidwell + + PR c++/60943 + * decl2.c (change_return_type): Propagate FUNCTION_REF_QUALIFIED. + 2015-05-21 Marek Polacek * typeck.c (warn_args_num): Don't print "declare here" for builtins. @@ -14,7 +19,7 @@ (build_op_delete_call): Warn about size_t placement delete with -Wc++14-compat. -2015-05-19 Nathan sidwell +2015-05-19 Nathan Sidwell PR c++/65954 * typeck.c (finish_class_member_access_expr): Diagnose failed diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index 27bacab..f1b3d0c 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -195,6 +195,8 @@ change_return_type (tree new_ret, tree fntype) else newtype = build_method_type_directly (class_of_this_parm (fntype), new_ret, TREE_CHAIN (args)); + if (FUNCTION_REF_QUALIFIED (fntype)) + newtype = build_ref_qualified_type (newtype, type_memfn_rqual (fntype)); if (raises) newtype = build_exception_variant (newtype, raises); if (attrs) -- cgit v1.1