mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
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:
parent
cc25be4804
commit
32a905da80
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue