Update math.nim

This commit is contained in:
matkuki
2016-06-18 12:26:21 +02:00
committed by GitHub
parent f9a659f7ab
commit 39fd0e801d

View File

@@ -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'.