summary refs log tree commit diff stats
path: root/lib/pure/collections
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-06-10 02:22:16 +0200
committerAraq <rumpf_a@web.de>2011-06-10 02:22:16 +0200
commit5f2d930a54c5b51e29b133f5e9753a8101092553 (patch)
treeec83e4eb21117a939d2e95a87f2405d32eab9bdf /lib/pure/collections
parent3bc821aa5c676869d65f1448a005dfd47f197f61 (diff)
downloadNim-5f2d930a54c5b51e29b133f5e9753a8101092553.tar.gz
Bugfix: no #line dir with 0 generated
Diffstat (limited to 'lib/pure/collections')
-rw-r--r--lib/pure/collections/tables.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim
index f817ec800..d1ed7586a 100644
--- a/lib/pure/collections/tables.nim
+++ b/lib/pure/collections/tables.nim
@@ -16,7 +16,7 @@
 ## ``shallowADT`` to compile a version that uses shallow copies instead.
 
 import
-  os, hashes, math
+  hashes, math
 
 when defined(shallowADT):
   {.pragma: myShallow, shallow.}