Added extern "C" block that was removed in previous commit.

This commit is contained in:
John Senneker 2021-12-01 15:15:24 -05:00
commit 160b8c5da3

View file

@ -214,6 +214,10 @@ SWIG_Python_CheckNoKeywords(PyObject *kwargs, const char *name) {
#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* Python-specific SWIG API */
#define SWIG_newvarlink() SWIG_Python_newvarlink()
#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
@ -430,6 +434,10 @@ SWIG_globals(void) {
return Swig_Globals_global;
}
#ifdef __cplusplus
}
#endif
/* -----------------------------------------------------------------------------
* Pointer declarations
* ----------------------------------------------------------------------------- */