From 947ecd1257f78e8ee723bf3a6806b8f24642a064 Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 27 Jul 2020 11:58:31 +0200 Subject: [PATCH] more renamings --- lib/system.nim | 6 +++--- lib/system/{refs_v2.nim => arc.nim} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename lib/system/{refs_v2.nim => arc.nim} (100%) diff --git a/lib/system.nim b/lib/system.nim index 71eed5beeb..93386c4aed 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1423,8 +1423,8 @@ proc toBiggestInt*(f: BiggestFloat): BiggestInt {.noSideEffect.} = ## Same as `toInt <#toInt,float>`_ but for ``BiggestFloat`` to ``BiggestInt``. if f >= 0: BiggestInt(f+0.5) else: BiggestInt(f-0.5) -proc addQuitProc*(quitProc: proc() {.noconv.}) {. - importc: "atexit", header: "", deprecated: "use exitprocs.addExitProc".} +proc addQuitProc*(quitProc: proc() {.noconv.}) {. + importc: "atexit", header: "", deprecated: "use exitprocs.addExitProc".} ## Adds/registers a quit procedure. ## ## Each call to ``addQuitProc`` registers another quit procedure. Up to 30 @@ -1752,7 +1752,7 @@ when notJSnotNims: when defined(nimV2): - include system/refs_v2 + include system/arc import system/assertions export assertions diff --git a/lib/system/refs_v2.nim b/lib/system/arc.nim similarity index 100% rename from lib/system/refs_v2.nim rename to lib/system/arc.nim