2017-03-18 16:28:01 +01:00
|
|
|
Index: lib-src/libnyquist/nyquist/xlisp/xlbfun.c
|
|
|
|
===================================================================
|
|
|
|
--- lib-src/libnyquist/nyquist/xlisp/xlbfun.c.orig 2017-03-03 21:27:17.000000000 +0200
|
|
|
|
+++ lib-src/libnyquist/nyquist/xlisp/xlbfun.c 2017-03-12 10:16:53.207654852 +0200
|
|
|
|
@@ -603,7 +603,10 @@ LVAL xcleanup(void)
|
2015-07-20 13:57:58 +02:00
|
|
|
{
|
|
|
|
xllastarg();
|
|
|
|
xlcleanup();
|
|
|
|
- /* compiler might (wrongly) complain there is no return value */
|
|
|
|
+ /* this point will never be reached because xlcleanup() does a
|
2017-03-18 16:28:01 +01:00
|
|
|
+ longjmp(). The return is added to avoid false positive
|
2015-07-20 13:57:58 +02:00
|
|
|
+ error messages from static analyzers and compilers */
|
|
|
|
+ return (NIL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* xtoplevel - special form 'top-level' */
|
2017-03-18 16:28:01 +01:00
|
|
|
Index: src/PluginManager.h
|
|
|
|
===================================================================
|
|
|
|
--- src/PluginManager.h.orig 2017-03-03 21:27:17.000000000 +0200
|
|
|
|
+++ src/PluginManager.h 2017-03-12 10:16:53.207654852 +0200
|
|
|
|
@@ -167,7 +167,6 @@ typedef std::map<PluginID, PluginDescrip
|
2015-07-20 13:57:58 +02:00
|
|
|
|
|
|
|
typedef wxArrayString PluginIDList;
|
|
|
|
|
|
|
|
-class ProviderMap;
|
|
|
|
class PluginRegistrationDialog;
|
|
|
|
|
2017-03-18 16:28:01 +01:00
|
|
|
class PluginManager final : public PluginManagerInterface
|