Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 58b2f516 authored by BOUCHERIE Raphael's avatar BOUCHERIE Raphael
Browse files

fixed silent warnings

parent dd63d047
No related branches found
No related tags found
1 merge request!10fix silent warnings and pkgconfig
This commit is part of merge request !10. Comments created here will be created in the context of that merge request.
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
int int
main(int argc, char ** argv) main(int argc, char ** argv)
{ {
int rc;
libhqr_tree_t qrtree; libhqr_tree_t qrtree;
libhqr_tiledesc_t matrix; libhqr_tiledesc_t matrix;
...@@ -32,7 +31,7 @@ main(int argc, char ** argv) ...@@ -32,7 +31,7 @@ main(int argc, char ** argv)
matrix.mt = 1; matrix.mt = 1;
matrix.nt = 1; matrix.nt = 1;
libhqr_hqr_init( &qrtree, LIBHQR_QR, &matrix, 0, 0, 1, 3, 0, 0); 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 ); libhqr_matrix_finalize( &qrtree );
return 1; return 1;
} }
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