Browse Source

Fixed SIMDRegister errors in the 32-bit VS2017 build

tags/2021-05-28
Zsolt Garamvolgyi jules 8 years ago
parent
commit
daab5147c2
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      modules/juce_dsp/containers/juce_SIMDRegister.h

+ 4
- 4
modules/juce_dsp/containers/juce_SIMDRegister.h View File

@@ -103,16 +103,16 @@ struct SIMDRegister
vSIMDType value;
/** Default constructor. */
inline JUCE_VECTOR_CALLTYPE SIMDRegister() noexcept {}
inline SIMDRegister() noexcept {}
/** Constructs an object from the native SIMD type. */
inline JUCE_VECTOR_CALLTYPE SIMDRegister (vSIMDType a) noexcept : value (a) {}
inline SIMDRegister (vSIMDType a) noexcept : value (a) {}
/** Constructs an object from a scalar type by broadcasting it to all elements. */
inline JUCE_VECTOR_CALLTYPE SIMDRegister (Type s) noexcept { *this = s; }
inline SIMDRegister (Type s) noexcept { *this = s; }
/** Destrutor. */
inline JUCE_VECTOR_CALLTYPE ~SIMDRegister() noexcept {}
inline ~SIMDRegister() noexcept {}
//==============================================================================
/** Returns the number of elements in this vector. */


Loading…
Cancel
Save