diff options
author | matkuki <kukovecmatic@hotmail.com> | 2016-06-18 12:26:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-18 12:26:21 +0200 |
commit | 39fd0e801d6e57dc906e178a2b23408abc3706f6 (patch) | |
tree | e9c8069fc08e73a43cc04584dde8e032f9e5b6ef /lib/pure | |
parent | f9a659f7abbc374f04cf40e37d073bb4b508473e (diff) | |
download | Nim-39fd0e801d6e57dc906e178a2b23408abc3706f6.tar.gz |
Update math.nim
Diffstat (limited to 'lib/pure')
-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 f31ad5db4..b4abf4dc8 100644 --- a/lib/pure/math.nim +++ b/lib/pure/math.nim @@ -220,7 +220,7 @@ when not defined(JS): ## .. code-block:: nim ## echo ceil(-2.1) ## -2.0 - when defined(windows): + when defined(windows) and defined(vcc): proc round0[T: float32|float64](x: T): T = ## Windows compilers prior to MSVC 2012 do not implement 'round', ## 'roundl' or 'roundf'. |