diff options
author | Varriount <Varriount@users.noreply.github.com> | 2014-11-03 02:17:39 -0500 |
---|---|---|
committer | Varriount <Varriount@users.noreply.github.com> | 2014-11-03 02:17:39 -0500 |
commit | 6935171b85a1b08b1cdfba2a56d5291219d89b5f (patch) | |
tree | de80412b34d0d4a7479cd90616cf2fa292c41fb9 /lib | |
parent | bd2ba2d73f3b7e9d3106c4bf11c4d82c14e7ceff (diff) | |
download | Nim-6935171b85a1b08b1cdfba2a56d5291219d89b5f.tar.gz |
Fix math.nim on windows
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/math.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/math.nim b/lib/pure/math.nim index 97c7b0e05..0f6a07f13 100644 --- a/lib/pure/math.nim +++ b/lib/pure/math.nim @@ -14,7 +14,7 @@ ## <backends.html#the-javascript-target>`_. include "system/inclrtl" - +import "impure/fenv" {.push debugger:off .} # the user does not want to trace a part # of the standard library! |