From dc9a14f976d5f5294fcc0aee75cd6df1546ccec8 Mon Sep 17 00:00:00 2001 From: Thomas Mertes Date: Thu, 25 Jan 2024 17:19:49 +0100 Subject: [PATCH] The value of a ref_list is at the heap --- lib/comp/type.s7i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/comp/type.s7i b/lib/comp/type.s7i index 53b5b00b..0de94f49 100644 --- a/lib/comp/type.s7i +++ b/lib/comp/type.s7i @@ -228,7 +228,7 @@ const func boolean: valueIsAtHeap (in type: aType) is func const set of category: heapCategories is { BIGINTOBJECT, STRIOBJECT, BSTRIOBJECT, FILEOBJECT, WINOBJECT, PROCESSOBJECT, PROGOBJECT, DATABASEOBJECT, SQLSTMTOBJECT, SETOBJECT, - ARRAYOBJECT, STRUCTOBJECT, HASHOBJECT, INTERFACEOBJECT}; + ARRAYOBJECT, STRUCTOBJECT, HASHOBJECT, INTERFACEOBJECT, REFLISTOBJECT}; begin if aType in typeCategory and typeCategory[aType] in heapCategories then isAtHeap := TRUE;