Fix harmless warning about missing return type in initWithSession:

The return type defaults to "id" anyhow, but it's better to specify it
explicitly.
This commit is contained in:
Vadim Zeitlin
2020-12-26 12:31:07 +01:00
parent 889e974700
commit 139db5cc16

View File

@@ -34,7 +34,7 @@
@implementation wxWebSessionDelegate
- initWithSession:(wxWebSessionURLSession*)session
- (id)initWithSession:(wxWebSessionURLSession*)session
{
m_session = session;
m_requests = [[NSMapTable weakToStrongObjectsMapTable] retain];