* Headers/Foundation/NSXPCConnection.h,

* Source/NSXPCConnection.m: Fix broken compilation on gcc.
This commit is contained in:
fredkiefer 2019-11-14 23:02:30 +01:00
parent 879bd3bb55
commit 1915415b48
3 changed files with 12 additions and 7 deletions

View file

@ -87,12 +87,12 @@
{
}
- (id) remoteObjectProxyWithErrorHandler:(void (^)(NSError *error))handler
- (id) remoteObjectProxyWithErrorHandler:(GSXPCProxyErrorHandler)handler
{
return nil;
}
- (id) synchronousRemoteObjectProxyWithErrorHandler:(void (^)(NSError *error))handler
- (id) synchronousRemoteObjectProxyWithErrorHandler:(GSXPCProxyErrorHandler)handler
{
return nil;
}