upgrade to JUCE 5.4.3. Remove (probably) unused JUCE modules. Remove VST2 target (it's been end-of-life'd by Steinberg and by JUCE)

This commit is contained in:
Alex Birch
2019-06-22 20:41:38 +01:00
parent d22c2cd4fa
commit 9ee566b251
1140 changed files with 67534 additions and 105952 deletions

View File

@ -46,9 +46,7 @@ namespace AnimatedPositionBehaviours
*/
struct ContinuousWithMomentum
{
ContinuousWithMomentum() noexcept
{
}
ContinuousWithMomentum() = default;
/** Sets the friction that damps the movement of the value.
A typical value is 0.08; higher values indicate more friction.
@ -114,9 +112,7 @@ namespace AnimatedPositionBehaviours
*/
struct SnapToPageBoundaries
{
SnapToPageBoundaries() noexcept : targetSnapPosition()
{
}
SnapToPageBoundaries() = default;
/** Called by the AnimatedPosition class. This tells us the position and
velocity at which the user is about to release the object.
@ -154,7 +150,7 @@ namespace AnimatedPositionBehaviours
}
private:
double targetSnapPosition;
double targetSnapPosition = 0.0;
};
}