This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
sorry not implemented: address of bound pointer-to-member function
- To: egcs mailing list <egcs at cygnus dot com>
- Subject: sorry not implemented: address of bound pointer-to-member function
- From: "A.P. Zijlstra" <peter at mcs dot nl>
- Date: Mon, 28 Sep 1998 18:26:55 +0200
- Organization: Physics student @ University of Amsterdam
- Reply-To: peter at mcs dot nl
Hi,...
I'm currently using egcs-19980921 (l8est snapshot), and ran into the
error: "sorry not implemented: address of bound pointer-to-member
function".
What do I do ? Is there someone working on this implementation or do I
code around this problem ?
Also could someone explain the exact meaning of this message to me. The
thing triggering all this is trying to pass the address of a virtual
function member to some C-function.
example:
class Interface {
public:
virtual void some_function() const =0;
};
class FooBar {
public:
use_interface( const Interface * if) {
Cfunc( if->some_function);
};
};
--eoe--
kind regards,
Peter Zijlstra
--
Physics student @ University of Amsterdam