summary refs log tree commit diff stats
path: root/lib/system/gc_common.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-07-01 15:10:18 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-07-01 15:10:18 +0200
commit67c7e49e2aa993bfedc35a962d3a5e765e72f325 (patch)
tree4ca19e22266e8e782ca06b2af584f7ba9ade3108 /lib/system/gc_common.nim
parentb5a96d28c7e848a9a8fd9d7766d8c8462a12e2b8 (diff)
downloadNim-67c7e49e2aa993bfedc35a962d3a5e765e72f325.tar.gz
gc_common: minor reformating
Diffstat (limited to 'lib/system/gc_common.nim')
-rw-r--r--lib/system/gc_common.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/gc_common.nim b/lib/system/gc_common.nim
index 939776a58..711a610bf 100644
--- a/lib/system/gc_common.nim
+++ b/lib/system/gc_common.nim
@@ -431,9 +431,9 @@ type
   GlobalMarkerProc = proc () {.nimcall, benign.}
 var
   globalMarkersLen: int
-  globalMarkers: array[0.. 3499, GlobalMarkerProc]
+  globalMarkers: array[0..3499, GlobalMarkerProc]
   threadLocalMarkersLen: int
-  threadLocalMarkers: array[0.. 3499, GlobalMarkerProc]
+  threadLocalMarkers: array[0..3499, GlobalMarkerProc]
   gHeapidGenerator: int
 
 proc nimRegisterGlobalMarker(markerProc: GlobalMarkerProc) {.compilerProc.} =