Append newline to each section of output

develop
lethosor 2014-05-15 17:30:42 -04:00
parent 2074f7e78b
commit 9b1d393c1c
1 changed files with 1 additions and 1 deletions

@ -62,7 +62,7 @@ public:
std::string part;
while (std::getline(ss, part))
{
responses.push_back(std::make_pair(v, part));
responses.push_back(std::make_pair(v, part + '\n'));
}
}
protected: