This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: [patch] testsuite file fails concept-checks
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: Jonathan Wakely <cow at compsoc dot man dot ac dot uk>
- Cc: libstdc++ at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Mon, 17 May 2004 08:43:25 -0500
- Subject: Re: [patch] testsuite file fails concept-checks
- Organization: Red Hat / Chicago
- References: <20040517120729.GA8385@compsoc.man.ac.uk>
Jonathan
This patch is fine, but your spacing is off.
- _Tp __c(__a) _IsUnused; // require const copy constructor
+ _Tp __c _IsUnused (__a); // require const copy constructor
should be
+ _Tp __c _IsUnused(__a); // require const copy constructor
And others. With this issue fixed this is ok for 3.4 and mainline.
Thanks,
benjamin