We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362e2b1 commit 0e3532aCopy full SHA for 0e3532a
thirdparty/intervaltree/IntervalTree.h
@@ -163,11 +163,11 @@ class IntervalTree {
163
}
164
165
assert(is_valid().first);
166
- }
+ }
167
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 {
+ // 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 {
171
if (!intervals.empty() && ! (stop < intervals.front().start)) {
172
for (auto & i : intervals) {
173
f(i);
0 commit comments