Skip to content

Commit

Permalink
clear asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
sfchen committed Oct 7, 2021
1 parent d2b5588 commit fd60e03
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ void Read::appendToString(string* target) {
total++;
str[total] = '\0';

assert(total == size);
target->append(str, size);
delete[] str;
}
Expand Down Expand Up @@ -169,7 +168,6 @@ void Read::appendToStringWithTag(string* target, string tag) {
total++;
str[total] = '\0';

assert(total == size);
target->append(str, size);
delete[] str;
}
Expand Down

0 comments on commit fd60e03

Please sign in to comment.