Browse Source

Fixed compatibility with Xcode 8.2.1

tags/2021-05-28
Tom Poole 6 years ago
parent
commit
06f8accd9c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_graphics/geometry/juce_AffineTransform.cpp

+ 1
- 1
modules/juce_graphics/geometry/juce_AffineTransform.cpp View File

@@ -60,7 +60,7 @@ bool AffineTransform::isIdentity() const noexcept
&& mat11 == 1.0f;
}
JUCE_DECLARE_DEPRECATED_STATIC (const AffineTransform AffineTransform::identity;)
JUCE_DECLARE_DEPRECATED_STATIC (const AffineTransform AffineTransform::identity (1.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f);)
//==============================================================================
AffineTransform AffineTransform::followedBy (const AffineTransform& other) const noexcept


Loading…
Cancel
Save