remove surplus parentheses to silence clang5

This commit is contained in:
Andrew
2018-01-01 20:56:26 +01:00
parent 4d0b005e5b
commit 11a627c54e
5 changed files with 11 additions and 11 deletions

View File

@@ -295,9 +295,9 @@ static int inner_thread(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n,
/* Return early if no more computation is needed */
if ((k == 0) || (alpha == NULL)) return 0;
if ((alpha[0] == ZERO)
if (alpha[0] == ZERO
#ifdef COMPLEX
&& (alpha[1] == ZERO)
&& alpha[1] == ZERO
#endif
) return 0;