Skip to content

Commit

Permalink
Fix macOS builds
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Nov 11, 2024
1 parent 601e3b4 commit a1ac243
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/nchg/cartesian_product/cartesian_product.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,11 @@ struct ChromIndex {
break;
}
}

Check warning on line 324 in src/nchg/cartesian_product/cartesian_product.cpp

View check run for this annotation

Codecov / codecov/patch

src/nchg/cartesian_product/cartesian_product.cpp#L322-L324

Added lines #L322 - L324 were not covered by tests
#if defined(__apple_build_version__) && __apple_build_version__ < 16000000
index.emplace_back(ChromIndex{chrom, i0, i1});
#else
index.emplace_back(chrom, i0, i1);
#endif
i = i1;
}

Check warning on line 331 in src/nchg/cartesian_product/cartesian_product.cpp

View check run for this annotation

Codecov / codecov/patch

src/nchg/cartesian_product/cartesian_product.cpp#L328-L331

Added lines #L328 - L331 were not covered by tests

Expand Down

0 comments on commit a1ac243

Please sign in to comment.