From f45f08fef0f18e6365557d74032c226fa6a93abb Mon Sep 17 00:00:00 2001 From: "joaquin.f.fernandez" Date: Thu, 27 Oct 2022 10:37:49 -0300 Subject: [PATCH] Fix signed warning. --- src/mmoc/ir/index.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mmoc/ir/index.cpp b/src/mmoc/ir/index.cpp index 76453af3..9cfea27c 100644 --- a/src/mmoc/ir/index.cpp +++ b/src/mmoc/ir/index.cpp @@ -412,7 +412,7 @@ Expression Range::getExp(std::vector exps, size_t pos) void Range::generate(SB::Set set, int offset, vector vars, std::vector begin_exps, std::vector 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();