From 55e87bae9545513e4310c0a7f5f6bd516c6291fa Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Mon, 18 Oct 2021 21:37:36 -0700 Subject: [PATCH] mathnode: fix macro issue --- app/node/math/math/mathbase.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/node/math/math/mathbase.h b/app/node/math/math/mathbase.h index 940bbee21..11bdffe77 100644 --- a/app/node/math/math/mathbase.h +++ b/app/node/math/math/mathbase.h @@ -101,8 +101,9 @@ protected: template static T PerformAddSubMultDiv(Operation operation, T a, U b); -#ifdef Q_PROCESSOR_X86 static void PerformAllOnFloatBuffer(Operation operation, float *a, float b, int start, int end); + +#ifdef Q_PROCESSOR_X86 static void PerformAllOnFloatBufferSSE(Operation operation, float *a, float b, int start, int end); #endif