From e58eca8c057b0a683fe132774380c79eb1e4e33e Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Wed, 1 Nov 2017 14:11:16 +0100 Subject: [PATCH] system.'..<' should not be dirty; fixes yet another regression --- lib/system.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system.nim b/lib/system.nim index 51db2ef662..710bf312fe 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -3429,7 +3429,7 @@ template `..^`*(a, b: untyped): untyped = ## '..' and '^' is required. a .. ^b -template `..<`*(a, b: untyped): untyped {.dirty.} = +template `..<`*(a, b: untyped): untyped = ## a shortcut for 'a..pred(b)'. a .. pred(b)