Re: [Cython] Constant pointers not working

2013-04-08 Thread Volker Mische
On 04/02/2013 07:20 PM, Volker Mische wrote: > On 03/22/2013 02:47 PM, Volker Mische wrote: >> Hi all, >> >> I was excited to see that 'const' is finally supported, but constant >> pointers are not. Here's an example with the correspondin

Re: [Cython] Constant pointers not working

2013-04-02 Thread Volker Mische
On 03/22/2013 02:47 PM, Volker Mische wrote: > Hi all, > > I was excited to see that 'const' is finally supported, but constant > pointers are not. Here's an example with the corresponding error: >

[Cython] Constant pointers not working

2013-03-22 Thread Volker Mische
Hi all, I was excited to see that 'const' is finally supported, but constant pointers are not. Here's an example with the corresponding error: Error compiling Cython file: ... cdef extern int foo(const int *const bar)