Skip to content

Commit 38bba33

Browse files
committed
Reverted intervalTree update
1 parent c7e325f commit 38bba33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

thirdparty/intervaltree/IntervalTree.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class IntervalTree {
6767
center = other.center;
6868
intervals = other.intervals;
6969
if (other.left) {
70-
left = new intervalTree();
70+
left = (intervalTree*) malloc(sizeof(intervalTree));
7171
*left = *other.left;
7272
} else {
7373
left = NULL;

0 commit comments

Comments
 (0)