Skip to content
Snippets Groups Projects
Commit 0ba9b178 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

addons: xmlreading: inline helpers

kill warnings if unused
parent 58ea4ace
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ struct
} data_pointer = { {NULL}, TYPE_NONE };
static int ReadType( const char *value )
static inline int ReadType( const char *value )
{
if ( !strcmp( value, "playlist" ) )
return ADDON_PLAYLIST_PARSER;
......@@ -59,7 +59,7 @@ static int ReadType( const char *value )
return ADDON_UNKNOWN;
}
static const char * getTypePsz( int i_type )
static inline const char * getTypePsz( int i_type )
{
switch( i_type )
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment