Skip to content

Commit

Permalink
fix compile error in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
glennhickey committed Jan 16, 2014
1 parent 54c432e commit 4632ce1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mutations/impl/halIndels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ bool isStrictSingleCopy(const ColumnIterator::ColumnMap *colMap,
if (seenGenomes.size() == targets->size()) {
#ifndef NDEBUG
// Should be enough just to check the size. But we'll be careful--
for (set <const Genome *>::iterator setIt = targets.begin();
setIt != targets.end(); setIt++) {
for (set <const Genome *>::iterator setIt = targets->begin();
setIt != targets->end(); setIt++) {
assert(seenGenomes.count(*setIt));
}
#endif
Expand Down

0 comments on commit 4632ce1

Please sign in to comment.