🚑 the last commit contained a bug #821

parent 430f0351
......@@ -553,7 +553,7 @@ inline bool operator<(const value_t lhs, const value_t rhs) noexcept
const auto l_index = static_cast<std::size_t>(lhs);
const auto r_index = static_cast<std::size_t>(rhs);
return (l_index < order.size() and r_index <= order.size() and order[l_index] < order[r_index]);
return (l_index < order.size() and r_index < order.size() and order[l_index] < order[r_index]);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment