diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2016-10-06T14·34+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2016-10-06T15·00+0200 |
commit | b0f7f9c98f2b54e34e9344f817d30363533d108f (patch) | |
tree | 3e27bfd456a89fbbbb4c558d62a341f2eed575cf /src/libutil/json.cc | |
parent | ae522f930d69c5b80c13cd6596919d57ea971b88 (diff) |
toJSON(): Support some more types
Diffstat (limited to 'src/libutil/json.cc')
-rw-r--r-- | src/libutil/json.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libutil/json.cc b/src/libutil/json.cc index ecc3fdfe514e..6023d1d4fb84 100644 --- a/src/libutil/json.cc +++ b/src/libutil/json.cc @@ -44,6 +44,16 @@ void toJSON(std::ostream & str, long n) str << n; } +void toJSON(std::ostream & str, unsigned int n) +{ + str << n; +} + +void toJSON(std::ostream & str, int n) +{ + str << n; +} + void toJSON(std::ostream & str, double f) { str << f; |