Antti Karanta
Antti Karanta
While at it, I suggest you make separate switches for reflection warnings in repl and compilation if this is feasible. e.g. :warn-on-reflection true ;; both are true :warn-on-reflection {:when-compiling true...
Unfortunately I don't have anything public you could use. But that does not matter - the problem is easily demonstrable by creating a new lein clr project and then compiling...
You were right, I had changed the :warn-on-reflection key under the :clr hash. However, when I try to set it to false in defproject I get Unhandled Exception: clojure.lang.Compiler+CompilerException: System.InvalidOperationException:...
Hi, Ok, here is the project.clj file again. I'll copy paste it inline, too, in case there is some problem with attachments. Here: (defproject foo "0.1.0-SNAPSHOT" :description "FIXME: write description"...
@JamesNK is correct in that dividing by zero double does not result in an exception normally. However, in the environment where @aurax encountered the issue we have set floating point...
Sorry, forgot these: public const uint _EM_INVALID = 0x00000010, _EM_DENORMAL = 0x00080000, _EM_ZERODIVIDE = 0x00000008, _EM_OVERFLOW = 0x00000004, _EM_UNDERFLOW = 0x00000002, _EM_INEXACT = 0x00000001;
And these. Seems I'm bad at trying to copy a minimal set of code... private static uint ControlFp(uint state, uint mask) { uint currentControl = 0; int err = _controlfp_s(ref...