I'm using Xcode 13.2.1, and I get a warning when auto is deduced as id. This is on by default in Clang.
This PR replaces auto with id in choc_WebView.h, and fixes these errors. This matches choc_MessageLoop.h, which is the only other place call<id> is used to initialise a variable.
I'm using Xcode 13.2.1, and I get a warning when
auto
is deduced asid
. This is on by default in Clang.This PR replaces
auto
withid
inchoc_WebView.h
, and fixes these errors. This matcheschoc_MessageLoop.h
, which is the only other placecall<id>
is used to initialise a variable.