From 360801e8bb81415a72ca40e409267879dbddf340 Mon Sep 17 00:00:00 2001 From: BenceJanosSzabo <bence.janos.szabo@ericsson.com> Date: Wed, 29 Mar 2017 10:08:25 +0200 Subject: [PATCH] Now comparing the modules instead of the names when checking anytype compat Change-Id: Ib3039f7a8181acf217a020ecdad01846fa7f2ddf Signed-off-by: BenceJanosSzabo <bence.janos.szabo@ericsson.com> --- compiler2/Type_chk.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler2/Type_chk.cc b/compiler2/Type_chk.cc index e0453be49..a8801149f 100644 --- a/compiler2/Type_chk.cc +++ b/compiler2/Type_chk.cc @@ -838,8 +838,7 @@ Value *Type::new_value_for_dfe(Type *last, const char *dfe_str, Common::Referenc return 0; } bool same_mod = false; - if (last->get_my_scope()->get_scope_mod()->get_modid().get_name() == - t->get_my_scope()->get_scope_mod()->get_modid().get_name()) { + if (last->get_my_scope()->get_scope_mod() == t->get_my_scope()->get_scope_mod()) { same_mod = true; } if (!is_compatible_tt_tt(last->typetype, t->typetype, last->is_asn1(), t->is_asn1(), same_mod)) { -- GitLab