Skip to content

Commit 9320d1a

Browse files
committed
CI checker
1 parent f5ae411 commit 9320d1a

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/goto-symex/renaming_level.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ struct symex_renaming_levelt
4141
symex_renaming_levelt(symex_renaming_levelt &&other) = default;
4242

4343
/// Map identifier to ssa_exprt and counter
44-
typedef std::map<irep_idt, std::pair<ssa_exprt, unsigned>> current_namest;
44+
typedef std::map<irep_idt, std::pair<ssa_exprt, std::size_t>> current_namest;
4545
current_namest current_names;
4646

4747
/// Counter corresponding to an identifier

src/goto-symex/symex_goto.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -355,9 +355,9 @@ void goto_symext::merge_goto(
355355
/// the second to (ssa', j). If the first map has an entry for k but not the
356356
/// second one then j is 0, and when the first map has no entry for k then i = 0
357357
static void for_each2(
358-
const std::map<irep_idt, std::pair<ssa_exprt, unsigned>> &first_map,
359-
const std::map<irep_idt, std::pair<ssa_exprt, unsigned>> &second_map,
360-
const std::function<void(const ssa_exprt &, unsigned, unsigned)> &f)
358+
const std::map<irep_idt, std::pair<ssa_exprt, std::size_t>> &first_map,
359+
const std::map<irep_idt, std::pair<ssa_exprt, std::size_t>> &second_map,
360+
const std::function<void(const ssa_exprt &, std::size_t, std::size_t)> &f)
361361
{
362362
auto second_it = second_map.begin();
363363
for(const auto &first_pair : first_map)
@@ -407,8 +407,8 @@ static void merge_names(
407407
const bool do_simplify,
408408
symex_target_equationt &target,
409409
const ssa_exprt &ssa,
410-
const unsigned goto_count,
411-
const unsigned dest_count)
410+
const std::size_t goto_count,
411+
const std::size_t dest_count)
412412
{
413413
const irep_idt l1_identifier = ssa.get_identifier();
414414
const irep_idt &obj_identifier = ssa.get_object_name();

src/util/ssa_expr.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,19 @@ class ssa_exprt:public symbol_exprt
7777
return o.get_identifier();
7878
}
7979

80-
void set_level_0(unsigned i)
80+
void set_level_0(std::size_t i)
8181
{
8282
set(ID_L0, i);
8383
update_identifier();
8484
}
8585

86-
void set_level_1(unsigned i)
86+
void set_level_1(std::size_t i)
8787
{
8888
set(ID_L1, i);
8989
update_identifier();
9090
}
9191

92-
void set_level_2(unsigned i)
92+
void set_level_2(std::size_t i)
9393
{
9494
set(ID_L2, i);
9595
update_identifier();

0 commit comments

Comments
 (0)