mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-24 17:18:32 +02:00
#3505: JSON::PrintHandler.value(bool) prints incorrect value
This commit is contained in:
parent
516eebad72
commit
00d5e7171a
@ -191,7 +191,7 @@ void PrintHandler::value(double d)
|
|||||||
void PrintHandler::value(bool b)
|
void PrintHandler::value(bool b)
|
||||||
{
|
{
|
||||||
arrayValue();
|
arrayValue();
|
||||||
_out << b;
|
_out << (b ? "true" : "false");
|
||||||
_objStart = false;
|
_objStart = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user