Skip to content

Commit 527dfe3

Browse files
committed
minor fix
1 parent 6db5047 commit 527dfe3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

clus/src/clustering_separate.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ static void recover_collinear_tips(Grouping& live_grouping, const Tree::Scope& s
381381
const auto ttrans = track->get_scope_transform(tscope);
382382
for (auto& [oi, bidxs] : moves) {
383383
Cluster* donor = family.at(oi);
384-
if ((int) bidxs.size() == donor->nchildren()) {
384+
if (bidxs.size() == donor->nchildren()) {
385385
// whole donor moves; do not leave a childless husk behind
386386
track->take_children(*donor, true);
387387
family.at(oi) = nullptr;

0 commit comments

Comments
 (0)