Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 49818
Collapse All | Expand All

(-)dclib-0.2.21/dclib/core/clist.h (-2 / +2 lines)
Lines 102-108 Link Here
102
}
102
}
103
103
104
/** */
104
/** */
105
template<class type> inline CList<type>::~CList<type>()
105
template< class type> inline CList<type>::~CList()
106
{
106
{
107
	Clear();
107
	Clear();
108
}
108
}
Lines 359-365 Link Here
359
}
359
}
360
360
361
/** */
361
/** */
362
template<class type> inline CThreadList<type>::~CThreadList<type>()
362
template<class type> inline CThreadList<type>::~CThreadList()
363
{
363
{
364
}
364
}
365
365
(-)dclib-0.2.21/dclib/cpluginmanager.cpp (-1 / +1 lines)
Lines 118-124 Link Here
118
#ifdef WIN32
118
#ifdef WIN32
119
			dclib_plugin_init = (PLUGIN_INIT_FUNC)GetProcAddress(h,"dclib_plugin_init");
119
			dclib_plugin_init = (PLUGIN_INIT_FUNC)GetProcAddress(h,"dclib_plugin_init");
120
#else
120
#else
121
			((CPlugin*)dclib_plugin_init) = dlsym(h, "dclib_plugin_init");
121
			dclib_plugin_init = (PLUGIN_INIT_FUNC)(CPlugin*)dlsym(h, "dclib_plugin_init");
122
#endif
122
#endif
123
123
124
			if ( dclib_plugin_init == NULL )
124
			if ( dclib_plugin_init == NULL )

Return to bug 49818