From 356bcc47702d607eea7c2c749d12d17ed8ac2be5 Mon Sep 17 00:00:00 2001 From: Botond Baranyi <botond.baranyi@ericsson.com> Date: Fri, 8 Nov 2019 17:05:06 +0100 Subject: [PATCH] Added missing initialization (bug 552011) Change-Id: I66d14df162c997f0a34b3ab8d1c82ee077059b95 Signed-off-by: Botond Baranyi <botond.baranyi@ericsson.com> --- compiler2/ttcn3/AST_ttcn3.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler2/ttcn3/AST_ttcn3.cc b/compiler2/ttcn3/AST_ttcn3.cc index 650c29264..5dbd399e4 100644 --- a/compiler2/ttcn3/AST_ttcn3.cc +++ b/compiler2/ttcn3/AST_ttcn3.cc @@ -556,7 +556,7 @@ namespace Ttcn { // ================================= Reference::Reference(Identifier *p_id) - : Ref_base(), parlist(0) + : Ref_base(), parlist(0), gen_const_prefix(false) { subrefs.add(new FieldOrArrayRef(p_id)); } -- GitLab