Fixed strange formatting

This commit is contained in:
Patrick Norton 2021-08-06 13:53:21 -04:00 committed by Igor Korsukov
parent 414faab891
commit 83fa707043
1 changed files with 4 additions and 4 deletions

View File

@ -163,11 +163,11 @@ public:
}
}
assert(is_valid().first);
}
}
// Call f on all intervals near the range [start, stop]:
template <class UnaryFunction>
void visit_near(const Scalar& start, const Scalar& stop, UnaryFunction f) const {
// Call f on all intervals near the range [start, stop]:
template <class UnaryFunction>
void visit_near(const Scalar& start, const Scalar& stop, UnaryFunction f) const {
if (!intervals.empty() && ! (stop < intervals.front().start)) {
for (auto & i : intervals) {
f(i);