Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Make measurement iterator a forward iterator
At this point in time, the iterator for `MeasurementContainer` does not match the `std::forward_iterator` concept which SonarCloud really wants me to use. In this commit, I make sure that the iterator satisfies the concept. Unfortunately, this requires a default-initializer, because `std::forward_iterator` requires `std::incrementable` which requires `std::regular`, which requires `std::semiregular` which in turn requires `std::default_initializable` which I think is silly.
- Loading branch information