Dag Sverre Seljebotn wrote: > The reason to allow references in function arguments in "cdef extern" > C++ functions is that, well, libraries do come with such constructs, and > it is not clear how one would communicate with them if references in > function arguments isn't supported somehow.
Yep, I think that if you want to get serious about interfacing with C++, you're going to have to incorporate C++ references as a native Cython data type. Also change the syntax to allow a function call to be an lvalue. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
