aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Json.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2024-05-01 08:07:04 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2024-05-01 08:07:04 +0200
commitecc84973491dd29858eeaf986940d8cfe9986b7c (patch)
treecd91c3e2326777f1f6e30b9e172f51c69e3b0c98 /lib/Json.h
parent8d43776861883e9a6618b9a1cda922aa54443797 (diff)
downloaddabmux-ecc84973491dd29858eeaf986940d8cfe9986b7c.tar.gz
dabmux-ecc84973491dd29858eeaf986940d8cfe9986b7c.tar.bz2
dabmux-ecc84973491dd29858eeaf986940d8cfe9986b7c.zip
Handle int32 and int64 explicitly in Json
Diffstat (limited to 'lib/Json.h')
-rw-r--r--lib/Json.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Json.h b/lib/Json.h
index 65aa668..b082f92 100644
--- a/lib/Json.h
+++ b/lib/Json.h
@@ -50,8 +50,10 @@ namespace json {
std::vector<value_t>,
std::string,
double,
- size_t,
- ssize_t,
+ int64_t,
+ uint64_t,
+ int32_t,
+ uint32_t,
bool,
std::nullopt_t> v;
};