1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

iOS build fix.

This commit is contained in:
jules 2013-08-01 09:08:27 +01:00
parent 5e7bc2a187
commit 88cb38ea29

View file

@ -56,6 +56,7 @@ namespace
return [NSString string];
}
#if JUCE_MAC
template <typename RectangleType>
static NSRect makeNSRect (const RectangleType& r) noexcept
{
@ -64,6 +65,7 @@ namespace
static_cast <CGFloat> (r.getWidth()),
static_cast <CGFloat> (r.getHeight()));
}
#endif
}
//==============================================================================