From b956f1c401bc1c2bfe02ecb64186f1086f716dc8 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Sat, 14 Aug 2021 17:40:40 +0200 Subject: [PATCH] fixed: fields table was not copied in Item::Function::operator=(...) --- src/item.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/item.h b/src/item.h index f69bf05..2a18b19 100644 --- a/src/item.h +++ b/src/item.h @@ -100,6 +100,8 @@ struct Item { is_function = f.is_function; name = f.name; + fields = f.fields; + postfix = f.postfix; fun_cache = f.fun_cache; item_block = f.item_block; base_obj = f.base_obj;