Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielKrawisz committed Jul 29, 2023
1 parent b584642 commit 718d38b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sv/arith_uint256.h
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ base_uint<BITS> &base_uint<BITS>::operator /= (const base_uint &b) {
}

template <unsigned int BITS>
int base_uint<BITS>::CompareToj(const base_uint<BITS> &b) const {
int base_uint<BITS>::CompareTo (const base_uint<BITS> &b) const {
for (int i = WIDTH - 1; i >= 0; i--) {
if (pn[i] < b.pn[i]) return -1;
if (pn[i] > b.pn[i]) return 1;
Expand Down

0 comments on commit 718d38b

Please sign in to comment.