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:
parent
18fa0bfa15
commit
c4ddbecf73
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue