On 09/02/2008, Tim Niemueller <tim@xxxxxxxxxxxxx> wrote: > Hi all. > > I'm currently investigating for our codebase how smooth the transition > can be to GCC 4.3. There I'm running into the following problem on F9Alpha: > > I have a class which has a "sub-typedef" for an internal list, something > like: > > class SomeClass > { > public: > SomeClass(); > // more stuff... > protected: > typedef struct _mylist mylist_t; > struct _mylist { > mylist_t *next; > void *dataM > }; > }; Why not: class SomeClass { public: SomeClass(); // more stuff... protected: struct mylist_t { mylist_t *next; void *dataM }; }; -- Paul -- fedora-devel-list mailing list fedora-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/fedora-devel-list