You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stdcxx.apache.org by Eric Lemings <Er...@roguewave.com> on 2008/06/26 19:24:27 UTC

!ERROR! from gcc 4.3?

 
Any idea why the GCC 4.3 preprocessor is translating this:
 
	template <class _Type>
	class reference_wrapper
	{
	    _Type* _C_ptr;

	public:

	    typedef _Type type;
	...

to this:
 
	template <class _Type>
	class reference_wrapper
	{
	    _Type* _C_ptr;

	public:

	    typedef _Type !ERROR!;
	...

Brad.

RE: !ERROR! from gcc 4.3?

Posted by Eric Lemings <Er...@roguewave.com>.
NVM.  I found it.

> -----Original Message-----
> From: Eric Lemings [mailto:Eric.Lemings@roguewave.com] 
> Sent: Thursday, June 26, 2008 11:24 AM
> To: dev@stdcxx.apache.org
> Subject: !ERROR! from gcc 4.3?
> 
>  
> Any idea why the GCC 4.3 preprocessor is translating this:
>  
> 	template <class _Type>
> 	class reference_wrapper
> 	{
> 	    _Type* _C_ptr;
> 
> 	public:
> 
> 	    typedef _Type type;
> 	...
> 
> to this:
>  
> 	template <class _Type>
> 	class reference_wrapper
> 	{
> 	    _Type* _C_ptr;
> 
> 	public:
> 
> 	    typedef _Type !ERROR!;
> 	...
> 
> Brad.
>