-Werror=unused-parameter
Change-Id: If1aad98965a90ac6b2e5488f21fe0d84c9b4af47
This commit is contained in:
parent
c4c861b02d
commit
c2500a004d
1 changed files with 3 additions and 0 deletions
|
@ -798,14 +798,17 @@ struct splash
|
|||
/* Stubs that will never be called in this case */
|
||||
void splash_draw_progress( struct splash* splash, int progress )
|
||||
{
|
||||
(void)splash; (void)progress;
|
||||
}
|
||||
|
||||
void splash_destroy(struct splash* splash)
|
||||
{
|
||||
(void)splash;
|
||||
}
|
||||
|
||||
struct splash* splash_create(rtl_uString* pAppPath, int argc, char** argv)
|
||||
{
|
||||
(void)pAppPath; (void)argc; (void)argv;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue