Additional fix to enforce the compiler to use the correct prunning method.
diff --git a/test/sparse_basic.cpp b/test/sparse_basic.cpp
index ad294fc..92fff40 100644
--- a/test/sparse_basic.cpp
+++ b/test/sparse_basic.cpp
@@ -246,7 +246,7 @@
     m2.finalize();
     VERIFY(countFalseNonZero+countTrueNonZero == m2.nonZeros());
     VERIFY_IS_APPROX(m2, refM2);
-    m2.prune(1);
+    m2.prune(Scalar(1));
     VERIFY(countTrueNonZero==m2.nonZeros());
     VERIFY_IS_APPROX(m2, refM2);
   }