remove surplus parentheses to silence clang5
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user