From cb8e342c9dd95b12c1d879df82b9b31ae6270ecd Mon Sep 17 00:00:00 2001 From: Kristof Szabados <Kristof.Szabados@ericsson.com> Date: Thu, 23 Aug 2018 14:22:00 +0200 Subject: [PATCH] minor simplification. Signed-off-by: Kristof Szabados <Kristof.Szabados@ericsson.com> --- compiler2/ttcn3/OerAST.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler2/ttcn3/OerAST.cc b/compiler2/ttcn3/OerAST.cc index 0fb80c2dc..c29015245 100644 --- a/compiler2/ttcn3/OerAST.cc +++ b/compiler2/ttcn3/OerAST.cc @@ -33,6 +33,6 @@ OerAST::~OerAST() { } bool OerAST::empty() const { - return bytes == -1 && signed_ == true && length == -1 && + return bytes == -1 && signed_ && length == -1 && extendable == false && nr_of_root_comps == 0 && ext_attr_groups.empty() && p.empty(); } -- GitLab