From b05f948ab4bb37bde7587ea634eb3d38033c5d74 Mon Sep 17 00:00:00 2001 From: Ashley Nelson Date: Thu, 23 Jan 2025 01:52:00 +0000 Subject: [PATCH] lint --- src/support/intervals.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/support/intervals.h b/src/support/intervals.h index aee87bf2b3c..70bd231a88d 100644 --- a/src/support/intervals.h +++ b/src/support/intervals.h @@ -43,9 +43,9 @@ struct Interval { }; struct IntervalProcessor { - // TODO: Given a vector of Interval, returns a vector of the indices, mapping back - // to the original input vector, of non-overlapping indices, ie, the intervals - // that overlap have already been removed. + // TODO: Given a vector of Interval, returns a vector of the indices, mapping + // back to the original input vector, of non-overlapping indices, ie, the + // intervals that overlap have already been removed. static std::vector filterOverlaps(std::vector&); };