From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Buck To: mschaefer@dsai.com (Mark Schaefer) Cc: egcs@cygnus.com Subject: Re: Before you release 1.0.3 -- please! Date: Thu, 30 Apr 1998 20:03:00 -0000 Message-id: <199805010303.UAA12389@atrus.synopsys.com> References: <98Apr28.171852mdt.26882@colorado.dsai.com> X-SW-Source: 1998-04/msg01197.html > Before you send the next release out the door, could someone figure > out what you're going to do about the NULL problem. Basically, it's a > damned if I do, damned if I don't problem. The workaround is to use 0 in your code for function pointers or member function pointers. I doubt if this is going to be fixed before 1.0.3, since the only purpose of 1.0.3 is to fix so-called showstopper bugs, not bugs with simple workarounds. > int main(int, char**) > { > UiCallbackHandler a; > a.addCallback (1,1,NULL,1); > } s/NULL/0/