Skip to content

Commit

Permalink
Fix signed warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinffernandez committed Oct 27, 2022
1 parent 1dfcd70 commit f45f08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mmoc/ir/index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ Expression Range::getExp(std::vector<Expression> exps, size_t pos)

void Range::generate(SB::Set set, int offset, vector<string> vars, std::vector<Expression> begin_exps, std::vector<Expression> end_exps)
{
int pos = 0;
unsigned int pos = 0;
SB::UnordAtomSet a_sets = set.atomicSets();
for (SB::AtomSet a_set : a_sets) {
SB::MultiInterval intervals = a_set.atomicSets();
Expand Down

0 comments on commit f45f08f

Please sign in to comment.