j
k
j a
j l
Olaf Peter skrev:
the following code doesn't compile: [SNIP] m_f.fn = bind( bar::write, this); // L20
You need to take the address of bar::write, so this should work: m_f.fn = bind( &bar::write, this); Best regards, Christian
Back to the thread
Back to the list