diff options
author | Jason Merrill <jason@redhat.com> | 2013-05-16 11:03:25 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2013-05-16 11:03:25 -0400 |
commit | 11678eb3835f050414cc7e4a26ae6b9461e2e90d (patch) | |
tree | 501e2cca9fd5d66b53beb9c7347fbf48239a00c1 /gcc | |
parent | f999cd107a46b22d4ef8c20d869485ae16218271 (diff) | |
download | gcc-11678eb3835f050414cc7e4a26ae6b9461e2e90d.zip gcc-11678eb3835f050414cc7e4a26ae6b9461e2e90d.tar.gz gcc-11678eb3835f050414cc7e4a26ae6b9461e2e90d.tar.bz2 |
re PR c++/57279 ([C++11] alias declaration fails to declare function types with cv-qualifiers)
PR c++/57279
* decl.c (grokdeclarator): Allow member function qualifiers in
TYPENAME context.
From-SVN: r198975
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cp/decl.c | 6 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp0x/alias-decl-35.C | 9 |
3 files changed, 19 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 3609fa5..72ec0f0 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2013-05-16 Jason Merrill <jason@redhat.com> + + PR c++/57279 + * decl.c (grokdeclarator): Allow member function qualifiers in + TYPENAME context in C++11 mode. + 2013-05-16 Dodji Seketeli <dodji@redhat.com> PR c++/56782 - Regression with empty pack expansions diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index b16472f..a4f686a 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -10295,8 +10295,10 @@ grokdeclarator (const cp_declarator *declarator, if (ctype) type = build_memfn_type (type, ctype, memfn_quals, rqual); - /* Core issue #547: need to allow this in template type args. */ - else if (template_type_arg && TREE_CODE (type) == FUNCTION_TYPE) + /* Core issue #547: need to allow this in template type args. + Allow it in general in C++11 for alias-declarations. */ + else if ((template_type_arg || cxx_dialect >= cxx11) + && TREE_CODE (type) == FUNCTION_TYPE) type = apply_memfn_quals (type, memfn_quals, rqual); else error ("invalid qualifiers on non-member function type"); diff --git a/gcc/testsuite/g++.dg/cpp0x/alias-decl-35.C b/gcc/testsuite/g++.dg/cpp0x/alias-decl-35.C new file mode 100644 index 0000000..f412b30 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/alias-decl-35.C @@ -0,0 +1,9 @@ +// PR c++/57279 +// { dg-require-effective-target c++11 } + +typedef void fc1() const; // OK +typedef void frr1() &&; // OK +typedef void fcr1() const &; +using fc2 = void() const; // #4 +using frr2 = void() &&; // OK +using fcr2 = void() const &; // #6 |