Removed explicit qualifier
This commit is contained in:
parent
3e6d9e3504
commit
2ae74bad76
1 changed files with 3 additions and 3 deletions
|
|
@ -189,7 +189,7 @@ void applyGain<float>(const float* gain, const float* input, float* output, unsi
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
void sfz::divide<float>(const float* input, const float* divisor, float* output, unsigned size) noexcept
|
void divide<float>(const float* input, const float* divisor, float* output, unsigned size) noexcept
|
||||||
{
|
{
|
||||||
const auto sentinel = output + size;
|
const auto sentinel = output + size;
|
||||||
|
|
||||||
|
|
@ -215,7 +215,7 @@ void sfz::divide<float>(const float* input, const float* divisor, float* output,
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
void sfz::multiplyAdd<float>(const float* gain, const float* input, float* output, unsigned size) noexcept
|
void multiplyAdd<float>(const float* gain, const float* input, float* output, unsigned size) noexcept
|
||||||
{
|
{
|
||||||
const auto sentinel = output + size;
|
const auto sentinel = output + size;
|
||||||
|
|
||||||
|
|
@ -242,7 +242,7 @@ void sfz::multiplyAdd<float>(const float* gain, const float* input, float* outpu
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
void sfz::multiplyAdd<float>(float gain, const float* input, float* output, unsigned size) noexcept
|
void multiplyAdd<float>(float gain, const float* input, float* output, unsigned size) noexcept
|
||||||
{
|
{
|
||||||
const auto sentinel = output + size;
|
const auto sentinel = output + size;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue