From abcf441c00a0b9020f057d4144cba025ebd7affe Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Fri, 25 Dec 2015 21:05:31 +0000 Subject: [PATCH] * moved tllvmshadowsymtable items default property from private to public section (although the compiler doesn't seem to care about it) git-svn-id: trunk@32716 - --- compiler/symtable.pas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/symtable.pas b/compiler/symtable.pas index 05f5a46946..41455f8f9c 100644 --- a/compiler/symtable.pas +++ b/compiler/symtable.pas @@ -162,6 +162,8 @@ interface constructor create(st: tabstractrecordsymtable); destructor destroy; override; + + property items[index: tfieldvarsym]: tllvmshadowsymtableentry read get; default; private // generate the table procedure generate; @@ -171,7 +173,6 @@ interface procedure addalignmentpadding(finalsize: aint); procedure buildmapping(variantstarts: tfplist); procedure buildtable(variantstarts: tfplist); - property items[index: tfieldvarsym]: tllvmshadowsymtableentry read get; default; end; {$endif llvm}