commit b0a620c8d9724510f96d4efdc1264d8a63437e38
parent 8f66303cf20a059535b8c24e6c4de743b83e478b
Author: [email protected] <[email protected]>
Date: Mon, 16 Oct 2023 08:44:36 +0100
Disable operators if KFR_STD_COMPLEX defined
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/kfr/simd/complex.hpp b/include/kfr/simd/complex.hpp
@@ -37,6 +37,7 @@ namespace kfr
inline namespace CMT_ARCH_NAME
{
+#ifndef KFR_STD_COMPLEX
template <typename T>
KFR_INTRINSIC complex<T> operator+(const complex<T>& x, const complex<T>& y)
{
@@ -157,6 +158,7 @@ KFR_INTRINSIC complex<T> operator+(const complex<T>& x)
{
return x;
}
+#endif
} // namespace CMT_ARCH_NAME
} // namespace kfr