Re: delegate to shared member function

2011-04-24 Thread Robert Clipsham
On 24/04/2011 09:17, Benjamin Thaut wrote: I'm currently trying to pass a delegate to a shared member function to a function. The compiler tells me that the type I'm passing is (void delegate(const const(char[]) str) shared) When I try to use this as type for the function argument, it does not a

delegate to shared member function

2011-04-24 Thread Benjamin Thaut
I'm currently trying to pass a delegate to a shared member function to a function. The compiler tells me that the type I'm passing is (void delegate(const const(char[]) str) shared) When I try to use this as type for the function argument, it does not accept it. I tried various combinations but