Skip to content

Commit fe03ab9

Browse files
committed
Accept base type equality
Until we have resolved partial tag expansion everywhere we need to use base_type_eq for cases where both tags and expanded types may occur.
1 parent 3d9af8e commit fe03ab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/strings/string_refinement.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ static void add_equations_for_symbol_resolution(
329329
continue;
330330
}
331331

332-
if(lhs.type() != rhs.type())
332+
if(!base_type_eq(lhs.type(), rhs.type(), ns))
333333
{
334334
stream << log_message << "non equal types lhs: " << format(lhs)
335335
<< "\n####################### rhs: " << format(rhs) << eom;

0 commit comments

Comments
 (0)