From 58d6ad853ceca538b82279856f9b8883f420bcd8 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sat, 13 Apr 2024 22:09:13 -0700 Subject: [PATCH] remove debugging print --- src/Strings.hh | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Strings.hh b/src/Strings.hh index afeac0c..ebc770e 100644 --- a/src/Strings.hh +++ b/src/Strings.hh @@ -61,7 +61,6 @@ template 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);