From ecc84973491dd29858eeaf986940d8cfe9986b7c Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Wed, 1 May 2024 08:07:04 +0200 Subject: Handle int32 and int64 explicitly in Json --- lib/Json.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/Json.h') 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, std::string, double, - size_t, - ssize_t, + int64_t, + uint64_t, + int32_t, + uint32_t, bool, std::nullopt_t> v; }; -- cgit v1.2.3