summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-01-15 01:03:57 +0100
committerAraq <rumpf_a@web.de>2012-01-15 01:03:57 +0100
commitf58cc496725c65fe9d7ba85a0eab284255074416 (patch)
treee91f0c896238f0735cd96ca66a17aeaf7352f94f /compiler
parent4cfc0462a48cc85499e8aba0f803eb87f8188900 (diff)
downloadNim-f58cc496725c65fe9d7ba85a0eab284255074416.tar.gz
niminst: bugfixes; documentation changes
Diffstat (limited to 'compiler')
-rwxr-xr-xcompiler/ast.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim
index 9e799e051..db5d8b9f0 100755
--- a/compiler/ast.nim
+++ b/compiler/ast.nim
@@ -1024,7 +1024,7 @@ proc getStrOrChar*(a: PNode): string =
 
 proc isGenericRoutine*(s: PSym): bool = 
   case s.kind
-  of skProc, skTemplate, skMacro, skIterator, skMethod:
+  of skProc, skTemplate, skMacro, skIterator, skMethod, skConverter:
     result = s.ast != nil and s.ast[genericParamsPos].kind != nkEmpty
   else: nil