Browse Source

Fixed typos in juce_SIMDRegister.h

tags/2021-05-28
Noah Dayan 8 years ago
parent
commit
e1abac681d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/juce_dsp/containers/juce_SIMDRegister.h

+ 2
- 2
modules/juce_dsp/containers/juce_SIMDRegister.h View File

@@ -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…
Cancel
Save