File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
\*******************************************************************/
8
8
9
- #include < util/base_type.h>
10
9
#include < util/c_types.h>
11
10
#include < util/config.h>
12
11
#include < util/ebmc_util.h>
@@ -249,7 +248,7 @@ bool map_varst::array_types_eq(
249
248
return array_types_eq (to_array_type (s1), to_array_type (s2), error_msg);
250
249
251
250
// we are strict: the subtype needs to be identical
252
- if (! base_type_eq (s1, s2, ns) )
251
+ if (s1 != s2 )
253
252
{
254
253
error_msg = " array subtypes differ (E2)" ;
255
254
return true ;
@@ -285,7 +284,7 @@ bool map_varst::check_types_rec(
285
284
return check_types_rec (type1, ns.follow (type2), error_msg);
286
285
287
286
// type is the same?
288
- if (base_type_eq ( type1, type2, ns) )
287
+ if (type1 == type2 )
289
288
return false ;
290
289
291
290
// anything between integral types is fine
You can’t perform that action at this time.
0 commit comments