aboutsummaryrefslogtreecommitdiff
path: root/pl/math/pairwise_horner_wrap.h
diff options
context:
space:
mode:
Diffstat (limited to 'pl/math/pairwise_horner_wrap.h')
-rw-r--r--pl/math/pairwise_horner_wrap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pl/math/pairwise_horner_wrap.h b/pl/math/pairwise_horner_wrap.h
index b6efb6f..e56f059 100644
--- a/pl/math/pairwise_horner_wrap.h
+++ b/pl/math/pairwise_horner_wrap.h
@@ -6,7 +6,7 @@
*/
// clang-format off
-#define PW_HORNER_1_(x, c, i) FMA(x, C(i + 1), C(i))
+#define PW_HORNER_1_(x, c, i) FMA(x, c(i + 1), c(i))
#define PW_HORNER_3_(x, x2, c, i) FMA(x2, PW_HORNER_1_ (x, c, i + 2), PW_HORNER_1_(x, c, i))
#define PW_HORNER_5_(x, x2, c, i) FMA(x2, PW_HORNER_3_ (x, x2, c, i + 2), PW_HORNER_1_(x, c, i))
#define PW_HORNER_7_(x, x2, c, i) FMA(x2, PW_HORNER_5_ (x, x2, c, i + 2), PW_HORNER_1_(x, c, i))