ryanhaining / cppitertools

Implementation of python itertools and builtin iteration functions for C++17
https://twitter.com/cppitertools
BSD 2-Clause "Simplified" License
1.37k stars 115 forks source link

fixed all C++ warnings #75

Open GregTalotta opened 4 years ago

GregTalotta commented 4 years ago

I ran static analysis tools on the C++ code. Then fixed all warnings.

ryanhaining commented 4 years ago

The comparisons are done intentionally, the minimum requirements for an iterator that works with ranged-for include operator!= but not operator== so I only rely on the former. The iteratoriterator tests are verifying that the given operators work predictably.