Skip to content

Commit

Permalink
#13385: Avoid using APPROX, which is possibly a reserved word
Browse files Browse the repository at this point in the history
  • Loading branch information
jdh8 committed Oct 24, 2024
1 parent 60d363a commit cfb162a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ inline vFloat round_even(vFloat v) {
return v;
}

template <bool APPROX, int ITERATIONS = 8>
template <bool APPROXIMATE, int ITERATIONS = 8>
void calculate_round() {
for (int _ = 0; _ < ITERATIONS; ++_) {
*dst_reg = round_even(*dst_reg);
Expand Down

0 comments on commit cfb162a

Please sign in to comment.