This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Problem with explicit template instanciation
- From: Eljay Love-Jensen <eljay at adobe dot com>
- To: "laurent dot marzullo at laposte dot net" <laurent dot marzullo at laposte dot net>, "gcc-help" <gcc-help at gcc dot gnu dot org>
- Date: Mon, 16 Dec 2002 10:45:55 -0600
- Subject: Re: Problem with explicit template instanciation
Hi Laurent,
Does the problem still show up when you define...
namespace CDK
{
//...yada yada yada...
ExcpManip Param( char const * const& , char const * const& );
}
The "char const * const" should handle string literals. Whereas "char*
const" isn't quite right for string literals.
--Eljay