21 February 2008 13:00
GCC 4.3 Release Series — Porting to the New Tools - GNU Project - Free Software Foundation (FSF)
by sylvainulg (via)GCC by default no longer accepts code such as
typedef struct xxx xxx {};
struct counted_ptr
{
xxx xxx();
};
but will issue the diagnostic
error: declaration of xxx'
error: changes meaning of 'xxx' from '...'
1
(1 marks)