From 1b9c66d7205ec9cf06e5dd282c4a28ff34b2b139 Mon Sep 17 00:00:00 2001 From: "A. S. Budden" Date: Tue, 31 May 2016 15:16:50 +0100 Subject: [PATCH] Correction to round0 following review. --- lib/pure/math.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/math.nim b/lib/pure/math.nim index 1edbfcab6a..8a1c802be2 100644 --- a/lib/pure/math.nim +++ b/lib/pure/math.nim @@ -247,7 +247,7 @@ else: proc exp*(x: float32): float32 {.importc: "Math.exp", nodecl.} proc exp*(x: float64): float64 {.importc: "Math.exp", nodecl.} - proc round0*(x: float): float {.importc: "Math.round", nodecl.} + proc round0(x: float): float {.importc: "Math.round", nodecl.} proc pow*(x, y: float32): float32 {.importC: "Math.pow", nodecl.} proc pow*(x, y: float64): float64 {.importc: "Math.pow", nodecl.}