C++17 is more strict than previous versions, giving a compilation error in a call to Connect() from ccmanager.cpp, line 290:
error: 'wxEvtHandler' is an inaccessible base of 'CCManager'
See this forum thread for more information.
I reported this issue on wxTrac, ticket 19266. The conclusion is that Connect() was never supposed to work with private inheritance, while Bind() should work. The documentation for Connect() has been updated to remark this.
A possible fix is changing all Connect() to Bind(), but this is far from trivial. The attached patch just makes inheritance from wxEvtHandler public.
This is fixed in the trunk now, thanks!