Skip to content

Commit fbdc71c

Browse files
committed
Add bool to array
1 parent 3985d13 commit fbdc71c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

include/JsonCreator/Array.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ namespace JsonCreator
4343
{
4444
this->GetWriter()->String(str);
4545
}
46+
47+
void AddBool(const bool v)
48+
{
49+
this->GetWriter()->Bool(v);
50+
}
4651

4752
Object<T> AddObject()
4853
{

0 commit comments

Comments
 (0)