Fix boolean bitwise and warning.
diff --git a/test/product_small.cpp b/test/product_small.cpp
index a3a04dc..0fd82c3 100644
--- a/test/product_small.cpp
+++ b/test/product_small.cpp
@@ -69,7 +69,7 @@
   for(Index i=0;i<C.rows();++i)
     for(Index j=0;j<C.cols();++j)
       for(Index k=0;k<A.cols();++k)
-       D.coeffRef(i,j) |= A.coeff(i,k) & B.coeff(k,j);
+       D.coeffRef(i,j) |= (A.coeff(i,k) && B.coeff(k,j));
   C += A * B;
   VERIFY_IS_EQUAL(C, D);