From mboxrd@z Thu Jan 1 00:00:00 1970 From: matthew green To: sid@sources.redhat.com Subject: SID & GCC 3.0 should be now happy. Date: Thu, 02 Aug 2001 23:08:00 -0000 Message-id: <22852.996818901@cygnus.com> X-SW-Source: 2001-q3/msg00034.html hi folks. i've just commited the changes necessary to build sid with GCC 3.0 and newer compilers. things to look out for: - components & busses need dtors that have a throw() specifier. - cerr, min, hex, etc., are all in namespace std:: by default, and must be explictly used. - writing `&(Class::MemberFn)' makes GCC 3.0 to lose type info about this expression, causing it to be unable to match function calls with prototypes. the result is that you get errors with `' in them, not the type of `MemberFn' above. just remove the parens and write `&Class::MemberFn.' .mrg.