diff options
author | Adam Butcher <abutcher@gcc.gnu.org> | 2013-09-13 17:14:15 +0100 |
---|---|---|
committer | Adam Butcher <abutcher@gcc.gnu.org> | 2013-09-13 17:14:15 +0100 |
commit | f3a880f8ce05db480187117358a742b6c27389e6 (patch) | |
tree | b3a6ccfb5b51b1de42bc371b1ac6993f040d4704 /gcc/cp/parser.h | |
parent | 19ba6aab7b0980c7c07ec76426541c7fea430c15 (diff) | |
download | gcc-f3a880f8ce05db480187117358a742b6c27389e6.zip gcc-f3a880f8ce05db480187117358a742b6c27389e6.tar.gz gcc-f3a880f8ce05db480187117358a742b6c27389e6.tar.bz2 |
Revert r202554, r202540 and r202539.
- r202554: Fix uninitialized variables causing breakage with -Werror.
- r202540: Support using 'auto' in a function parameter list to introduce an implicit template parameter.
- r202539: Support lambda templates.
From-SVN: r202570
Diffstat (limited to 'gcc/cp/parser.h')
-rw-r--r-- | gcc/cp/parser.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/cp/parser.h b/gcc/cp/parser.h index ffdddaf..3d8bb74 100644 --- a/gcc/cp/parser.h +++ b/gcc/cp/parser.h @@ -341,12 +341,6 @@ typedef struct GTY(()) cp_parser { /* The number of template parameter lists that apply directly to the current declaration. */ unsigned num_template_parameter_lists; - - /* TRUE if the function being declared was made a template due to its - parameter list containing generic type specifiers (`auto' or concept - identifiers) rather than an explicit template parameter list. */ - bool fully_implicit_function_template_p; - } cp_parser; /* In parser.c */ |