diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-07-28 20:23:16 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-07-28 20:23:24 +0200 |
commit | f5fa5dae85030510156298477cefe189f44524dc (patch) | |
tree | f8bfd2cb011d7b35726e7f629d8e0112965089db /compiler/semdata.nim | |
parent | 34afaeeeddce3c96d0798c44ea4f4fcca93a5fd0 (diff) | |
download | Nim-f5fa5dae85030510156298477cefe189f44524dc.tar.gz |
generic multi-methods should work now
Diffstat (limited to 'compiler/semdata.nim')
-rw-r--r-- | compiler/semdata.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semdata.nim b/compiler/semdata.nim index 52b5dc274..30b6e261d 100644 --- a/compiler/semdata.nim +++ b/compiler/semdata.nim @@ -104,7 +104,7 @@ type hloLoopDetector*: int # used to prevent endless loops in the HLO inParallelStmt*: int instTypeBoundOp*: proc (c: PContext; dc: PSym; t: PType; info: TLineInfo; - op: TTypeAttachedOp): PSym {.nimcall.} + op: TTypeAttachedOp; col: int): PSym {.nimcall.} selfName*: PIdent signatures*: TStrTable |