Add image to simplex conversion code
[libstick.git] / include / libstick-0.1 / booleanmatrix.h
index 1fb4dd28f6d98e02d70cabb6372e62ddf6d9180a..8626f53d58eca6c755737b29f16e37bebd316399 100644 (file)
@@ -375,7 +375,7 @@ size_t count_set_intersection (InputIterator1 first1, InputIterator1 last1, Inpu
     size_t count = 0;
 
     // As long as we did not either end, look for common elements
-    while (first1!=last1 && first2!=last2)
+    while (first1 != last1 && first2 != last2)
     {
         if (*first1 < *first2)
             ++first1;