Skip to content

Commit fe4765a

Browse files
committed
Merge branch 'user/khorton/const_correct' of https://github.com/keith-horton/ebpf-verifier into user/khorton/const_correct
2 parents 36e3962 + 82971c4 commit fe4765a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/crab/interval.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ class interval_t final {
175175
} else if (x.is_bottom()) {
176176
return *this;
177177
} else {
178-
const auto lb = x._lb < _lb ? ts.get_prev(x._lb) : _lb;
179-
const auto ub = _ub < x._ub ? ts.get_next(x._ub) : _ub;
178+
const bound_t lb = x._lb < _lb ? ts.get_prev(x._lb) : _lb;
179+
const bound_t ub = _ub < x._ub ? ts.get_next(x._ub) : _ub;
180180
return interval_t{lb, ub};
181181
}
182182
}

0 commit comments

Comments
 (0)