Skip to content

Commit

Permalink
// LCOV_EXCL_LINE
Browse files Browse the repository at this point in the history
  • Loading branch information
ms609 committed Jun 27, 2024
1 parent 24d2eeb commit a2f72d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/day_1985.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ double consensus_info (const List trees, const LogicalVector phylo,

std::vector<ClusterTable> tables;
if (std::size_t(n_trees) > tables.max_size()) {
Rcpp::stop("Not enough memory available to compute consensus of so many trees");
Rcpp::stop("Not enough memory available to compute consensus of so many trees"); // LCOV_EXCL_LINE

Check warning on line 86 in src/day_1985.cpp

View check run for this annotation

Codecov / codecov/patch

src/day_1985.cpp#L86

Added line #L86 was not covered by tests
}
tables.reserve(n_trees);
for (int16 i = n_trees; i--; ) {
Expand Down

0 comments on commit a2f72d4

Please sign in to comment.