Hi,
I've seen a lot of warnings that after r8512 (cbPlugin API change: replaced pure virtual functions with empty implementations, removing the necessity for every plugin to implement them, regardless of actual need.).
The warning is:
"include/cbplugin.h:169:62: warning: no return statement in function returning non-void [-Wreturn-type]"It comes from the new definition of
BuildToolBarvirtual bool BuildToolBar(wxToolBar* /* toolBar */) {}
The way I see it, it should be:
virtual bool BuildToolBar(wxToolBar* /* toolBar */) { return false; }
Not really a problem though... I just thought it would be nice to report and get rid of the warnings... ;-)