diff options
author | Araq <rumpf_a@web.de> | 2017-02-08 14:55:30 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-02-08 14:55:30 +0100 |
commit | 346ea6d1719e91d211d3f39121385ed9f0cc11ab (patch) | |
tree | 5b351f19cc92d45a6fe1ecdf0c1a1aadab98eb7f /lib/system/gc_ms.nim | |
parent | 794d36cf31d8f7debc2ede1f7792fdbcc0a1ef5e (diff) | |
download | Nim-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.nim | 2 |
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) |