Skip to content

Commit

Permalink
warning fix (unused param)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 717539089
  • Loading branch information
jan-wassenberg authored and copybara-github committed Jan 20, 2025
1 parent f2209b9 commit ccedc21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hwy/ops/emu128-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -2923,7 +2923,7 @@ T InitReduceMin(D d) {
return GetLane(Inf(d));
}
template <class D, typename T = TFromD<D>, HWY_IF_NOT_FLOAT_NOR_SPECIAL(T)>
T InitReduceMin(D d) {
T InitReduceMin(D) {
return HighestValue<T>();
}

Expand All @@ -2932,7 +2932,7 @@ T InitReduceMax(D d) {
return -GetLane(Inf(d));
}
template <class D, typename T = TFromD<D>, HWY_IF_NOT_FLOAT_NOR_SPECIAL(T)>
T InitReduceMax(D d) {
T InitReduceMax(D) {
return LowestValue<T>();
}
} // namespace detail
Expand Down

0 comments on commit ccedc21

Please sign in to comment.