summary refs log tree commit diff stats
path: root/lib/impure/re.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-06-04 00:58:43 +0200
committerAraq <rumpf_a@web.de>2013-06-04 00:58:43 +0200
commitb767f34b6b57fe8dfc5777b8f06a24eb0ba35391 (patch)
tree9732f448485ea9d5ba771bd64bbb572c64c47f76 /lib/impure/re.nim
parent7d6556ffe701628b5e3428292599b0d705416c85 (diff)
downloadNim-b767f34b6b57fe8dfc5777b8f06a24eb0ba35391.tar.gz
manyloc test should be green again
Diffstat (limited to 'lib/impure/re.nim')
-rw-r--r--lib/impure/re.nim1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/impure/re.nim b/lib/impure/re.nim
index 5041ed3ba..ef02a3b1d 100644
--- a/lib/impure/re.nim
+++ b/lib/impure/re.nim
@@ -242,7 +242,6 @@ template `=~` *(s: string, pattern: TRegEx): expr =
   bind maxSubPatterns
   when not definedInScope(matches):
     var matches {.inject.}: array[0..maxSubPatterns-1, string]
-    {.warning: "injected 'matches' might be affected by new scoping rules in 0.9.4".}
   match(s, pattern, matches)
 
 # ------------------------- more string handling ------------------------------