Fixed noisy warning with Clang
authorZaheer Chothia <zchothia@student.ethz.ch>
Tue, 19 Jun 2012 20:05:32 +0000 (22:05 +0200)
committerZaheer Chothia <zaheer.chothia@gmail.com>
Wed, 20 Jun 2012 22:17:28 +0000 (00:17 +0200)
commit037d995c4d8c2c5281d9141ce2905f44cc908ac2
tree8d199588e63d7694afc57d68a069e12f8edde3d9
parentb8b922d334568ea2cf5d7c471be187715ddfb33f
Fixed noisy warning with Clang

../common_thread.h:138:24: warning: equality comparison with extraneous parentheses [-Wparentheses-equality]
  if ((blas_cpu_number == 1)
       ~~~~~~~~~~~~~~~~^~~~
../common_thread.h:138:24: note: remove extraneous parentheses around the comparison to silence this warning
  if ((blas_cpu_number == 1)
      ~                ^   ~
../common_thread.h:138:24: note: use '=' to turn this equality comparison into an assignment
  if ((blas_cpu_number == 1)
                       ^~
                       =
common_thread.h