Skip to content

Commit 39c3841

Browse files
committed
Fixed alignment issue for OSX x64
1 parent ddc5cd0 commit 39c3841

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/superintervals.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ class IntervalMap {
388388
if (starts.empty()) {
389389
return 0;
390390
}
391-
const size_t idx = upper_bound(end);
391+
size_t idx = upper_bound(end);
392392
if (idx == SIZE_MAX) {
393393
return 0;
394394
}

0 commit comments

Comments
 (0)