X-Git-Url: http://git.sthu.org/?a=blobdiff_plain;f=include%2Flibstick-0.1%2Fbooleanmatrix.h;h=8626f53d58eca6c755737b29f16e37bebd316399;hb=754ba359b3f87df0d42f8706549b6eda32d3373d;hp=1fb4dd28f6d98e02d70cabb6372e62ddf6d9180a;hpb=46e2e26363bfa07dc79d912ebe6df772942536bd;p=libstick.git 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;