Skip to content

Commit

Permalink
More CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dashodanger committed Jun 25, 2024
1 parent c608a2d commit b8f6453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/steve/src/Rand.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace steve {
template <class T>
static const T& in(const std::set<T>& s) {
auto it(s.begin());
std::advance(it, next(0ull, s.size()-1));
std::advance(it, next(0ull, (uint64_t)s.size()-1));
return *it;
}
template <class T>
Expand Down

0 comments on commit b8f6453

Please sign in to comment.