Member function pointers

Eljay Love-Jensen eljay@adobe.com
Tue May 24 16:20:00 GMT 2005


Hi Rune,

func is a data member of the testfnptr object.

Change this...
if (0 != (this->*func))
...to this...
if (0 != func)

HTH,
--Eljay



More information about the Gcc-help mailing list