mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-30 21:50:47 +01:00
passify gcc
This commit is contained in:
@@ -39,13 +39,13 @@ std::string toJSON(char c)
|
|||||||
|
|
||||||
void toJSON(const std::string& value, std::ostream& out, bool wrap)
|
void toJSON(const std::string& value, std::ostream& out, bool wrap)
|
||||||
{
|
{
|
||||||
if (wrap) out << '"';
|
if (wrap) out << std::string(1, '"');
|
||||||
for (std::string::const_iterator it = value.begin(),
|
for (std::string::const_iterator it = value.begin(),
|
||||||
end = value.end(); it != end; ++it)
|
end = value.end(); it != end; ++it)
|
||||||
{
|
{
|
||||||
out << toJSON(*it);
|
out << toJSON(*it);
|
||||||
}
|
}
|
||||||
if (wrap) out << '"';
|
if (wrap) out << std::string(1, '"');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user