1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed SIMDRegister errors in the 32-bit VS2017 build

This commit is contained in:
Zsolt Garamvolgyi 2017-12-05 14:43:05 +00:00 committed by jules
parent 458534056a
commit daab5147c2

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. */