summaryrefslogtreecommitdiff
path: root/src/json.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/json.hh')
-rw-r--r--src/json.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/json.hh b/src/json.hh
index d872dde..609fc80 100644
--- a/src/json.hh
+++ b/src/json.hh
@@ -21,7 +21,8 @@ class Writer {
virtual void value(bool value) = 0;
void value(char const* value);
- void value(int value);
+ void value(int32_t value);
+ void value(uint32_t value);
virtual void start_array() = 0;
virtual void end_array() = 0;