summary refs log tree commit diff stats
path: root/lib/system/gc_ms.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2017-02-08 14:55:30 +0100
committerAraq <rumpf_a@web.de>2017-02-08 14:55:30 +0100
commit346ea6d1719e91d211d3f39121385ed9f0cc11ab (patch)
tree5b351f19cc92d45a6fe1ecdf0c1a1aadab98eb7f /lib/system/gc_ms.nim
parent794d36cf31d8f7debc2ede1f7792fdbcc0a1ef5e (diff)
downloadNim-346ea6d1719e91d211d3f39121385ed9f0cc11ab.tar.gz
system.nim: don't use deprecated symbols/constructs
Diffstat (limited to 'lib/system/gc_ms.nim')
-rw-r--r--lib/system/gc_ms.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/gc_ms.nim b/lib/system/gc_ms.nim
index 63ca94698..f927575dd 100644
--- a/lib/system/gc_ms.nim
+++ b/lib/system/gc_ms.nim
@@ -24,7 +24,7 @@ const
   rcGrey = 1   # unused
   rcBlack = 2
 
-template mulThreshold(x): expr {.immediate.} = x * 2
+template mulThreshold(x): untyped = x * 2
 
 when defined(memProfiler):
   proc nimProfile(requestedSize: int)