Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When changing from assertions to exceptions we introduced a change in behavior. ``` assert(data[j] > 0); ``` became ``` if (data[j] < 0 || ...) ``` This matches the changes before Monday to check <= 0.
- Loading branch information