Skip to content

Commit ce19734

Browse files
smowtonDaniel Kroening
authored and
Daniel Kroening
committed
Remove use of type_eq in disabled code
1 parent 9288b38 commit ce19734

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/goto-programs/string_abstraction.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ bool string_abstractiont::build_wrap(
3535
// #define build_wrap(a,b,c) build(a,b,c)
3636
// to avoid it
3737
const typet &a_t=build_abstraction_type(object.type());
38-
/*assert(type_eq(dest.type(), a_t, ns) ||
38+
/*assert(dest.type() == a_t ||
3939
(dest.type().id()==ID_array && a_t.id()==ID_pointer &&
40-
type_eq(dest.type().subtype(), a_t.subtype(), ns)));
40+
dest.type().subtype() == a_t.subtype()));
4141
*/
4242
if(
4343
dest.type() != a_t &&

0 commit comments

Comments
 (0)