summaryrefslogtreecommitdiff
path: root/compiler/symdef.pas
diff options
context:
space:
mode:
authorchrivers <chrivers@3ad0048d-3df7-0310-abae-a5850022a9f2>2007-01-26 22:11:39 +0000
committerchrivers <chrivers@3ad0048d-3df7-0310-abae-a5850022a9f2>2007-01-26 22:11:39 +0000
commit3dcd3cb35bb3c54f6246599406ff7f9208522c7e (patch)
treedb5818113d740d98c531fb7b2493ebbdff396ac6 /compiler/symdef.pas
parentfd91c55f841c8421ac72e58f02e67a47ade236bc (diff)
downloadfpc-3dcd3cb35bb3c54f6246599406ff7f9208522c7e.tar.gz
* Renamed "fieldoffset" to "iioffset" to avoid confusion with fieldvarsym.fieldoffset
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@6214 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/symdef.pas')
-rw-r--r--compiler/symdef.pas6
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler/symdef.pas b/compiler/symdef.pas
index f37eb61bd9..3e84a0076d 100644
--- a/compiler/symdef.pas
+++ b/compiler/symdef.pas
@@ -204,7 +204,6 @@ interface
VtblImplIntf : TImplementedInterface;
NameMappings : TFPHashList;
ProcDefs : TFPObjectList;
- iitype : tinterfaceentrytype;
// IIOffset can be merged with IOffset. But then, fpc is not allowed to genrate a vmtentry.
// Right now, fpc generate an entry for all implemented interfaces (but it should just for etStandard ones)
// - Ivo Steinmann
@@ -4031,10 +4030,9 @@ implementation
intfdef:=aintf;
ioffset:=-1;
itype:=etStandard;
- fieldoffset:=-1;
+ iioffset:=-1;
NameMappings:=nil;
procdefs:=nil;
- iitype := etStandard;
iioffset := 0;
end;
@@ -4046,7 +4044,7 @@ implementation
intfdefderef:=d;
ioffset:=-1;
itype:=etStandard;
- fieldoffset:=-1;
+ iioffset:=-1;
NameMappings:=nil;
procdefs:=nil;
end;