summary refs log tree commit diff stats
path: root/compiler/rodutils.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-07-15 12:56:03 +0200
committerAndreas Rumpf <rumpf_a@web.de>2016-07-15 12:56:03 +0200
commit0834cd63d99a8a63682a033bd6222dc6cee4b3a9 (patch)
treeb155afdfd863273b066f595da2de0bfd5dbb46aa /compiler/rodutils.nim
parent3e72c98d49ff6c9c07251e2497c5b245770bec5e (diff)
downloadNim-0834cd63d99a8a63682a033bd6222dc6cee4b3a9.tar.gz
prepare Nim codebase for upcoming parser changes
Diffstat (limited to 'compiler/rodutils.nim')
-rw-r--r--compiler/rodutils.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rodutils.nim b/compiler/rodutils.nim
index 91f93d279..945c94bc6 100644
--- a/compiler/rodutils.nim
+++ b/compiler/rodutils.nim
@@ -21,7 +21,7 @@ proc toStrMaxPrecision*(f: BiggestFloat): string =
     if f > 0.0: result = "INF"
     else: result = "-INF"
   else:
-    var buf: array [0..80, char]
+    var buf: array[0..80, char]
     c_sprintf(buf, "%#.16e", f)
     result = $buf