Skip to content

Commit

Permalink
remove debugging print
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzziqersoftware committed Apr 14, 2024
1 parent 7512997 commit 58d6ad8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Strings.hh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ template <typename StrT>
void strip_whitespace(StrT& s) {
size_t start_index = s.find_first_not_of(" \t\r\n");
size_t end_index = s.find_last_not_of(" \t\r\n");
fprintf(stderr, "%zu %zu\n", start_index, end_index);
if (start_index != StrT::npos && end_index != StrT::npos) {
if (start_index) {
s = s.substr(start_index, end_index - start_index + 1);
Expand Down

0 comments on commit 58d6ad8

Please sign in to comment.