mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
dl_util: Use an unsigned to match other values.
This commit is contained in:
parent
efb12331e0
commit
58682c20be
|
@ -276,7 +276,7 @@ namespace datalog {
|
|||
}
|
||||
unsigned n = container.size();
|
||||
unsigned ofs = 1;
|
||||
int r_i = 1;
|
||||
unsigned r_i = 1;
|
||||
for(unsigned i=removed_cols[0]+1; i<n; i++) {
|
||||
if(r_i!=removed_col_cnt && removed_cols[r_i]==i) {
|
||||
r_i++;
|
||||
|
|
Loading…
Reference in a new issue