Fix bug in runtime.swg, it should now work properly
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6994 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
67b49825cb
commit
290e0016d1
1 changed files with 4 additions and 4 deletions
|
|
@ -11,13 +11,13 @@
|
|||
|
||||
SWIGRUNTIMEINLINE swig_type_info *
|
||||
SWIG_TypeQuery(SWIG_MODULE_CLIENTDATA_TYPE clientdata, const char *name) {
|
||||
swig_module_info *module = SWIG_Runtime_GetModule(clientdata);
|
||||
swig_module_info *module = SWIG_GetModule(clientdata);
|
||||
return SWIG_TypeQueryModule(module, module, name);
|
||||
}
|
||||
|
||||
SWIGRUNTIMEINLINE swig_type_info *
|
||||
SWIG_MangledTypeQuery(SWIG_MODULE_CLIENTDATA_TYPE clientdata, const char *name) {
|
||||
swig_module_info *module = SWIG_Runtime_GetModule(clientdata);
|
||||
swig_module_info *module = SWIG_GetModule(clientdata);
|
||||
return SWIG_MangledTypeQueryModule(module, module, name);
|
||||
}
|
||||
|
||||
|
|
@ -25,13 +25,13 @@ SWIG_MangledTypeQuery(SWIG_MODULE_CLIENTDATA_TYPE clientdata, const char *name)
|
|||
|
||||
SWIGRUNTIMEINLINE swig_type_info *
|
||||
SWIG_TypeQuery(const char *name) {
|
||||
swig_module_info *module = SWIG_Runtime_GetModule();
|
||||
swig_module_info *module = SWIG_GetModule();
|
||||
return SWIG_TypeQueryModule(module, module, name);
|
||||
}
|
||||
|
||||
SWIGRUNTIMEINLINE swig_type_info *
|
||||
SWIG_MangledTypeQuery(const char *name) {
|
||||
swig_module_info *module = SWIG_Runtime_GetModule();
|
||||
swig_module_info *module = SWIG_GetModule();
|
||||
return SWIG_MangledTypeQueryModule(module, module, name);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue