Re: [julia-users] Warning cfunction does not return

2016-05-04 Thread 'Bill Hart' via julia-users
In this case the library interface requires that the function does not return. On 4 May 2016 at 15:03, Yichao Yu wrote: > On Wed, May 4, 2016 at 8:32 AM, 'Bill Hart' via julia-users > wrote: > > At the very least the warning should print

Re: [julia-users] Warning cfunction does not return

2016-05-04 Thread Yichao Yu
On Wed, May 4, 2016 at 8:32 AM, 'Bill Hart' via julia-users wrote: > At the very least the warning should print correctly. Currently there is no > end-of-line when the message is printed, so we end up with a handful of > these errors stuck one after the other. > >

Re: [julia-users] Warning cfunction does not return

2016-05-04 Thread 'Bill Hart' via julia-users
At the very least the warning should print correctly. Currently there is no end-of-line when the message is printed, so we end up with a handful of these errors stuck one after the other. But I too wonder what is the purpose of the warning. On 4 May 2016 at 14:27, Yichao Yu

Re: [julia-users] Warning cfunction does not return

2016-05-04 Thread Yichao Yu
On Wed, May 4, 2016 at 8:20 AM, 'Bill Hart' via julia-users wrote: > Julia is now issuing warnings because functions do not return, e.g: > > function flint_abort() > error("Problem in the Flint-Subsystem") > end > > > What is the standard way of making Julia accept

[julia-users] Warning cfunction does not return

2016-05-04 Thread 'Bill Hart' via julia-users
Julia is now issuing warnings because functions do not return, e.g: function flint_abort() error("Problem in the Flint-Subsystem") end What is the standard way of making Julia accept this as a valid function (it is not meant to return)?