Merge changes for NSURLSession from EngageHub (formerly Brainstorm).

This commit is contained in:
Richard Frith-Macdonald 2020-11-29 06:57:47 -05:00
parent d015cebbf3
commit 1b7bf26bea
70 changed files with 7980 additions and 192 deletions

View file

@ -146,15 +146,15 @@
}
- (pid_t) processIdentifier
{
return (pid_t)[self notImplemented: _cmd];
return (pid_t)(uintptr_t)[self notImplemented: _cmd];
}
- (uid_t) effectiveUserIdentifier
{
return (uid_t)[self notImplemented: _cmd];
return (uid_t)(uintptr_t)[self notImplemented: _cmd];
}
- (gid_t) effectiveGroupIdentifier
{
return (gid_t)[self notImplemented: _cmd];
return (gid_t)(uintptr_t)[self notImplemented: _cmd];
}
@end