Skip to content

Commit 74fa240

Browse files
author
Daniel Kroening
authored
Merge pull request #560 from NathanJPhillips/bugfix/json-false
Fixed incorrect initialiser value
2 parents 40678a3 + 1289fae commit 74fa240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/json.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class json_truet:public jsont
206206
class json_falset:public jsont
207207
{
208208
public:
209-
json_falset():jsont(J_TRUE) { }
209+
json_falset():jsont(J_FALSE) { }
210210
};
211211

212212
class json_nullt:public jsont

0 commit comments

Comments
 (0)