Skip to content

Commit

Permalink
Fix for GCC 14.1 as it is now used in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbbert committed Aug 15, 2024
1 parent 07e73fd commit 0b39dce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class QuintQuantizationMap : public QuantizationMap {
template<int TotalUnquantizedBits>
class BitQuantizationMap : public QuantizationMap {
public:
explicit BitQuantizationMap<TotalUnquantizedBits>(int range)
explicit BitQuantizationMap(int range)
: QuantizationMap() {
// Make sure that if we're using bits then we have a positive power of two.
assert(base::CountOnes(range + 1) == 1);
Expand Down

0 comments on commit 0b39dce

Please sign in to comment.