Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 03ed7fc1 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

starpu/cppi: Fix prototype of cppi_display_dbg to be compatible with Intel compiler

parent 632a418e
No related branches found
No related tags found
1 merge request!404GETRF: add panel permutation to get a full partial pivoting available
......@@ -82,8 +82,11 @@ cppi_display_dbg( cppi_interface_t *cppi_interface, FILE *f, const char *title )
}
#else
static inline void
cppi_display_dbg( cppi_interface_t *, FILE *, const char * )
cppi_display_dbg( cppi_interface_t *cppi_interface, FILE *f, const char *title )
{
(void)cppi_interface;
(void)f;
(void)title;
return;
}
#endif
......
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