mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-26 18:11:29 +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)
|
||||
{
|
||||
arrayValue();
|
||||
_out << b;
|
||||
_out << (b ? "true" : "false");
|
||||
_objStart = false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user