This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] PR64959: SFINAE in UDLs
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Andrea Azzarone <azzaronea at gmail dot com>
- Cc: Jason Merrill <jason at redhat dot com>, gcc-patches at gcc dot gnu dot org
- Date: Fri, 13 Feb 2015 20:45:22 +0100
- Subject: Re: [PATCH] PR64959: SFINAE in UDLs
- Authentication-results: sourceware.org; auth=none
- References: <CAGqc0-o0xXBL8We01z+bn_+sT1Cs-vHh1axmJguDK0GHpCVdNw at mail dot gmail dot com> <54DA3D71 dot 5060109 at redhat dot com> <CAGqc0-ojZZagLhBTgP=gV8wfSwr4v-aofzCKdOoNmNzExmO4hg at mail dot gmail dot com>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Wed, Feb 11, 2015 at 12:26:33AM +0100, Andrea Azzarone wrote:
> * gcc/testsuite/g++.dg/cpp1y/udlit-char-template-vs-std-literal-operator.C:
This fails on i686-linux:
FAIL: g++.dg/cpp1y/udlit-char-template-vs-std-literal-operator.C -std=c++14 (test for excess errors)
Excess errors: /home/jakub/src/gcc/gcc/testsuite/g++.dg/cpp1y/udlit-char-template-vs-std-literal-operator.C:10:51: error: 'int operator""_script(const char*, long unsigned int)' has invalid argument list
Perhaps you meant to #include <cstddef> too and use
size_t instead of unsigned long? Or just __SIZE_TYPE__ instead
of unsigned long?
Jakub