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:
parent
458534056a
commit
daab5147c2
1 changed files with 4 additions and 4 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue