summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorSimon Hafner <hafnersimon@gmail.com>2014-08-20 21:16:06 +0200
committerSimon Hafner <hafnersimon@gmail.com>2014-08-20 21:16:06 +0200
commit3f0c3ab6cf1eae1c31ad730f6b259fea149d9ca1 (patch)
tree7a9b9eec762beb5ef5dc7564e47a5b34e2762a18 /compiler
parente5fd84c5591f5ed0a1e53c1509b25fd2a3f00cd5 (diff)
downloadNim-3f0c3ab6cf1eae1c31ad730f6b259fea149d9ca1.tar.gz
added bug number to comment
Diffstat (limited to 'compiler')
-rw-r--r--compiler/types.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/types.nim b/compiler/types.nim
index 824ca47d0..ec2271deb 100644
--- a/compiler/types.nim
+++ b/compiler/types.nim
@@ -1390,7 +1390,7 @@ proc skipConv*(n: PNode): PNode =
   case n.kind
   of nkObjUpConv, nkObjDownConv, nkChckRange, nkChckRangeF, nkChckRange64:
     # only skip the conversion if it doesn't lose too important information
-    # (see bug #
+    # (see bug #1334)
     if n.sons[0].typ.classify == n.typ.classify:
       result = n.sons[0]
   of nkHiddenStdConv, nkHiddenSubConv, nkConv: