diff options
author | Araq <rumpf_a@web.de> | 2011-06-10 02:22:16 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-06-10 02:22:16 +0200 |
commit | 5f2d930a54c5b51e29b133f5e9753a8101092553 (patch) | |
tree | ec83e4eb21117a939d2e95a87f2405d32eab9bdf /lib/pure/collections | |
parent | 3bc821aa5c676869d65f1448a005dfd47f197f61 (diff) | |
download | Nim-5f2d930a54c5b51e29b133f5e9753a8101092553.tar.gz |
Bugfix: no #line dir with 0 generated
Diffstat (limited to 'lib/pure/collections')
-rw-r--r-- | lib/pure/collections/tables.nim | 2 |
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.} |