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.
