Browse Source

Fix klanfalter build with SSE (includes header inside namespace)

Signed-off-by: falkTX <falktx@falktx.com>
tags/2020-07-14
falkTX 4 years ago
parent
commit
e4213b4176
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      ports/klangfalter/source/FFTConvolver/Utilities.h

+ 3
- 3
ports/klangfalter/source/FFTConvolver/Utilities.h View File

@@ -25,9 +25,6 @@
#include <new>


namespace fftconvolver
{

#if defined(__SSE__) || (defined(_M_IX86_FP) && _M_IX86_FP >= 2)
#if !defined(FFTCONVOLVER_USE_SSE) && !defined(FFTCONVOLVER_DONT_USE_SSE)
#define FFTCONVOLVER_USE_SSE
@@ -46,6 +43,9 @@ namespace fftconvolver
#define FFTCONVOLVER_RESTRICT
#endif

namespace fftconvolver
{


/**
* @brief Returns whether SSE optimization for the convolver is enabled


Loading…
Cancel
Save