I am trying to use try-catch
blocks to handle a divide-by-zero
exception in marmalade, but I guess marmalade overrides c++ exception handling, so it's not working. I've searched on the forums and the solution seems to be that I have to add one option in the mkb as explained in this post.
options
{
enable-exceptions=1
}
I already tried adding it, but it's not working too. Is there any way I can handle this exception?