1
0
Fork 0

Silence a clang warning

This commit is contained in:
James Turner 2018-01-12 20:06:17 +00:00
parent b4cdac238e
commit 1681b92c31

View file

@ -346,8 +346,11 @@ void testmat( void ) /* main() for test purposes */
printf("Original multiplied by inverse:\n");
nr_printmat( mat3, n );
// if-defed out to silence Clang warning
#if 0
if (loop < maxloop-1) /* sleep(1) */;
#endif
}
nr_free_matrix( mat1, 1, n, 1, n );