mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-03 03:30:06 +00:00
Fixed typos in juce_SIMDRegister.h
This commit is contained in:
parent
61ba218a75
commit
e1abac681d
1 changed files with 2 additions and 2 deletions
|
|
@ -165,7 +165,7 @@ struct SIMDRegister
|
|||
/** Subtracts another SIMDRegister to the receiver. */
|
||||
inline SIMDRegister& JUCE_VECTOR_CALLTYPE operator-= (SIMDRegister v) noexcept { value = NativeOps::sub (value, v.value); return *this; }
|
||||
|
||||
/** Subtracts another SIMDRegister to the receiver. */
|
||||
/** Multiplies another SIMDRegister to the receiver. */
|
||||
inline SIMDRegister& JUCE_VECTOR_CALLTYPE operator*= (SIMDRegister v) noexcept { value = CmplxOps::mul (value, v.value); return *this; }
|
||||
|
||||
//==============================================================================
|
||||
|
|
@ -218,7 +218,7 @@ struct SIMDRegister
|
|||
/** Returns a vector where each element is the difference of the corresponding element in the receiver and the scalar s.*/
|
||||
inline SIMDRegister JUCE_VECTOR_CALLTYPE operator- (ElementType s) const noexcept { return { NativeOps::sub (value, CmplxOps::expand (s)) }; }
|
||||
|
||||
/** Returns a vector where each element is the difference of the corresponding element in the receiver and the scalar s.*/
|
||||
/** Returns a vector where each element is the product of the corresponding element in the receiver and the scalar s.*/
|
||||
inline SIMDRegister JUCE_VECTOR_CALLTYPE operator* (ElementType s) const noexcept { return { CmplxOps::mul (value, CmplxOps::expand (s)) }; }
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue