We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edd7ec7 commit d38de54Copy full SHA for d38de54
1 file changed
modules/yup_core/network/yup_URL.cpp
@@ -1013,7 +1013,7 @@ bool URL::isProbablyAnEmailAddress (const String& possibleEmailAddress)
1013
//==============================================================================
1014
#if YUP_IOS
1015
URL::Bookmark::Bookmark (void* bookmarkToUse)
1016
- : data ((__bridge_retained void*) (NSData*) bookmarkToUse)
+ : data ((__bridge_retained void*) (__bridge NSData*) bookmarkToUse)
1017
{
1018
}
1019
@@ -1132,7 +1132,7 @@ class iOSFileStreamWrapper final : public Stream
1132
error:&error];
1133
1134
if (error == nil)
1135
- setURLBookmark (yupUrl, (void*) bookmark);
+ setURLBookmark (yupUrl, (__bridge void*) bookmark);
1136
else
1137
jassertfalse;
1138
0 commit comments