Remove newlines too.

This commit is contained in:
Adam Treat 2023-04-16 14:04:25 -04:00
parent f8b962d50a
commit fdf7f20d90

View File

@ -82,7 +82,7 @@ void LLMObject::resetContext()
std::string remove_leading_whitespace(const std::string& input) {
auto first_non_whitespace = std::find_if(input.begin(), input.end(), [](unsigned char c) {
return !std::isspace(c) || c == '\n';
return !std::isspace(c);
});
return std::string(first_non_whitespace, input.end());