From 365507d7fd347703580750e42955783270165e1c Mon Sep 17 00:00:00 2001 From: Noah Dayan Date: Fri, 26 Jan 2018 09:03:34 +0000 Subject: [PATCH] Fixed typo in juce_SIMDRegister.h --- modules/juce_dsp/containers/juce_SIMDRegister.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_dsp/containers/juce_SIMDRegister.h b/modules/juce_dsp/containers/juce_SIMDRegister.h index 6377de5297..5afdd09707 100644 --- a/modules/juce_dsp/containers/juce_SIMDRegister.h +++ b/modules/juce_dsp/containers/juce_SIMDRegister.h @@ -296,7 +296,7 @@ struct SIMDRegister static inline SIMDRegister JUCE_VECTOR_CALLTYPE max (SIMDRegister a, SIMDRegister b) noexcept { return { NativeOps::max (a.value, b.value) }; } //============================================================================== - /** Multiplies a and b and adds the result to c. */ + /** Multiplies b and c and adds the result to a. */ static inline SIMDRegister JUCE_VECTOR_CALLTYPE multiplyAdd (SIMDRegister a, const SIMDRegister b, SIMDRegister c) noexcept { return { CmplxOps::muladd (a.value, b.value, c.value) };