diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2009-06-24 17:13:22 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2009-06-24 17:13:22 +0200 |
commit | 300430fbba28b408f7ac86ca46b03d9d50839399 (patch) | |
tree | b8a84f8efdccda7bfa909b3db911d9e2b9a4b39b /nim/semdata.pas | |
parent | 36818817bd61594ea6d106328bb8df0f5a25cfc4 (diff) | |
download | Nim-300430fbba28b408f7ac86ca46b03d9d50839399.tar.gz |
overload resolution for proc vars
Diffstat (limited to 'nim/semdata.pas')
-rw-r--r-- | nim/semdata.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nim/semdata.pas b/nim/semdata.pas index acca48376..acaffd3bf 100644 --- a/nim/semdata.pas +++ b/nim/semdata.pas @@ -45,7 +45,7 @@ type module: PSym; // the module sym belonging to the context filename: string; // the module's filename tab: TSymTab; // each module has its own symbol table - AmbigiousSymbols: TIntSet; // contains ids of all ambigious symbols (cannot + AmbiguousSymbols: TIntSet; // contains ids of all ambiguous symbols (cannot // store this info in the syms themselves!) generics: PNode; // a list of the things to compile; list of // nkExprEqExpr nodes which contain the generic @@ -156,7 +156,7 @@ begin fillChar(result^, sizeof(result^), 0); {@emit} InitSymTab(result.tab); - IntSetInit(result.AmbigiousSymbols); + IntSetInit(result.AmbiguousSymbols); initLinkedList(result.optionStack); initLinkedList(result.libs); append(result.optionStack, newOptionEntry()); |