Skip to content

Commit

Permalink
Fix build using GCC 15
Browse files Browse the repository at this point in the history
max is an rint, which doesn't have a "Low" member.  But max.Value,
which is an ruint, does.

Closes: linbox-team#232
  • Loading branch information
d-torrance committed Oct 3, 2024
1 parent 2cfacf9 commit 4d0712b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kernel/recint/rfiddling.h
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ namespace RecInt
template <size_t K>
inline rint<K> rint<K>::maxFFLAS() {
rint<K> max;
set_highest_bit(max.Low.Value);
set_highest_bit(max.Value.Low.Value);
return max;
}

Expand Down

0 comments on commit 4d0712b

Please sign in to comment.