Skip to content

Commit

Permalink
bug
Browse files Browse the repository at this point in the history
  • Loading branch information
msettles committed Aug 17, 2020
1 parent 747bb1f commit 6750b20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/ioHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -379,10 +379,10 @@ class WriterHelper : public ReadVisitor {
if (!one.getDiscard() && !two.getDiscard()) {
pe->write(*per);
} else if (!one.getDiscard() && !no_orphans) { // Will never be RC
one.join_comment(r2.get_comment());
one.join_comment(two.get_comment());
se->write_read(one, false);
} else if (!two.getDiscard() && !no_orphans) { // if stranded RC
two.join_comment(r1.get_comment());
two.join_comment(one.get_comment());
se->write_read(two, stranded);
}

Expand Down

0 comments on commit 6750b20

Please sign in to comment.