1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

SIMDRegister: Fix undefined behaviour

This commit is contained in:
attila 2024-07-02 14:13:41 +02:00
parent 18fa0bfa15
commit c4ddbecf73

View file

@ -112,7 +112,7 @@ struct SIMDRegister
/** The number of elements that this vector can hold. */
static constexpr size_t SIMDNumElements = SIMDRegisterSize / sizeof (ElementType);
vSIMDType value;
vSIMDType value{};
/** Default constructor. */
inline SIMDRegister() noexcept = default;