Skip to content

Commit 0e3532a

Browse files
PatrickNortonJojo-Schmitz
authored andcommitted
Fixed strange formatting
1 parent 362e2b1 commit 0e3532a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

thirdparty/intervaltree/IntervalTree.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,11 @@ class IntervalTree {
163163
}
164164
}
165165
assert(is_valid().first);
166-
}
166+
}
167167

168-
// Call f on all intervals near the range [start, stop]:
169-
template <class UnaryFunction>
170-
void visit_near(const Scalar& start, const Scalar& stop, UnaryFunction f) const {
168+
// Call f on all intervals near the range [start, stop]:
169+
template <class UnaryFunction>
170+
void visit_near(const Scalar& start, const Scalar& stop, UnaryFunction f) const {
171171
if (!intervals.empty() && ! (stop < intervals.front().start)) {
172172
for (auto & i : intervals) {
173173
f(i);

0 commit comments

Comments
 (0)