X-Git-Url: https://git.sthu.org/?p=libstick.git;a=blobdiff_plain;f=include%2Flibstick-0.1%2Fbooleanmatrix.h;h=8626f53d58eca6c755737b29f16e37bebd316399;hp=1fb4dd28f6d98e02d70cabb6372e62ddf6d9180a;hb=4b8265e5bcfd2332a3333c4129352e10c2d59c2f;hpb=b7f36c820bf1c247ff02c5647e9cca597a9a1ba9 diff --git a/include/libstick-0.1/booleanmatrix.h b/include/libstick-0.1/booleanmatrix.h index 1fb4dd2..8626f53 100644 --- a/include/libstick-0.1/booleanmatrix.h +++ b/include/libstick-0.1/booleanmatrix.h @@ -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;