This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [c++-concepts] explicit instantiation and specialization
- From: Ed Smith-Rowland <3dw4rd at verizon dot net>
- To: gcc-patches <gcc-patches at gcc dot gnu dot org>, andrew dot n dot sutton at gmail dot com, Jason Merrill <jason at redhat dot com>, Braden Obrzut <admin at maniacsvault dot net>
- Date: Wed, 13 Aug 2014 21:13:53 -0400
- Subject: Re: [c++-concepts] explicit instantiation and specialization
- Authentication-results: sourceware.org; auth=none
I get build fail:
../../gcc_concepts/gcc/cp/call.c:8793:8: error: unused variable âm1â
[-Werror=unused-variable]
tree m1 = get_temploid (cand1);
^
../../gcc_concepts/gcc/cp/call.c:8794:8: error: unused variable âm2â
[-Werror=unused-variable]
tree m2 = get_temploid (cand2);
^
cc1plus: all warnings being treated as errors
Commenting the lines let the build finish.
Ed