Mentions légales du service

Skip to content
Snippets Groups Projects

fix silent warnings and pkgconfig

Merged BOUCHERIE Raphael requested to merge hotfix into master
1 file
+ 1
2
Compare changes
  • Side-by-side
  • Inline
@@ -22,7 +22,6 @@
int
main(int argc, char ** argv)
{
int rc;
libhqr_tree_t qrtree;
libhqr_tiledesc_t matrix;
@@ -32,7 +31,7 @@ main(int argc, char ** argv)
matrix.mt = 1;
matrix.nt = 1;
libhqr_hqr_init( &qrtree, LIBHQR_QR, &matrix, 0, 0, 1, 3, 0, 0);
rc = libhqr_tree_check( &matrix, &qrtree );
if(libhqr_tree_check( &matrix, &qrtree )) return 0;
libhqr_matrix_finalize( &qrtree );
return 1;
}
Loading