diff --git a/modules/juce_core/maths/juce_MathsFunctions.h b/modules/juce_core/maths/juce_MathsFunctions.h index 759b5c020d..15a75e8d76 100644 --- a/modules/juce_core/maths/juce_MathsFunctions.h +++ b/modules/juce_core/maths/juce_MathsFunctions.h @@ -262,9 +262,6 @@ bool isPositiveAndNotGreaterThan (int valueToTest, Type upperLimit) noexcept } //============================================================================== -/** @deprecated Just use std::swap instead! */ -JUCE_DEPRECATED_WITH_BODY (template void swapVariables (Type& variable1, Type& variable2), { std::swap (variable1, variable2); }) - /** Handy function for avoiding unused variables warning. */ template void ignoreUnused (const Type1&) noexcept {}