Skip to content

Commit

Permalink
Remove incorrect lcov exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdrake committed Jun 19, 2015
1 parent df362d1 commit 33efaad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/boolexpr/set.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ BX_Set_EQ(struct BX_Set *self, struct BX_Set *other)
for (size_t i = 0; i < _primes[self->_pridx]; ++i) {
for (item = self->items[i]; item; item = item->tail) {
if (!BX_Set_Contains(other, item->key))
return false; // LCOV_EXCL_LINE
return false;
}
}

Expand Down

0 comments on commit 33efaad

Please sign in to comment.