Skip to content

Commit 0a94861

Browse files
committed
Fix bracket in debug output.
1 parent 5c364fd commit 0a94861

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/util/indexrange.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ std::optional<IndexRange> intersect2(IndexRange lhs, IndexRange rhs) {
104104
}
105105

106106
std::ostream& operator<<(std::ostream& os, IndexRange arg) {
107-
return os << '[' << arg.start() << " -> " << arg.end() << ')';
107+
return os << '[' << arg.start() << " -> " << arg.end() << ']';
108108
}
109109

110110
QDebug operator<<(QDebug dbg, IndexRange arg) {

0 commit comments

Comments
 (0)