Remove 'inline' from a function that is never actually inlined under any circumstances. Some compilers (Forte) don't...

Original commit message from CVS:
Remove 'inline' from a function that is never actually inlined
under any circumstances.  Some compilers (Forte) don't like
non-static inlines, and neither do I.  From Brian Cameron.
This commit is contained in:
David Schleef 2003-01-21 22:13:48 +00:00
parent cc25be4804
commit 32a905da80
2 changed files with 2 additions and 2 deletions

View file

@ -564,7 +564,7 @@ gst_debug_print_stack_trace (void)
#endif /* GST_ENABLE_FUNC_INTSTRUMENTATION */
inline void *
void *
_gst_debug_register_funcptr (void *ptr, gchar *ptrname)
{
if (!__gst_function_pointers)

View file

@ -352,7 +352,7 @@ void gst_default_info_handler (gint category,gboolean incore,
gint line,const gchar *debug_string,
void *element,gchar *string);
inline void * _gst_debug_register_funcptr (void *ptr, gchar *ptrname);
void * _gst_debug_register_funcptr (void *ptr, gchar *ptrname);
extern GstInfoHandler _gst_info_handler;
extern guint32 _gst_info_categories;