From e5c970a60512127b2898e55a64a594040bdbfd86 Mon Sep 17 00:00:00 2001 From: Weaselbot Date: Mon, 29 Jun 2026 14:04:04 -0400 Subject: [PATCH] Include in json_value.h for uint8_t `escapeAsJsonString` uses `uint8_t` but the header did not include ``, making it dependent on other headers to define the type. Add the missing include so `json_value.h` is self-contained. --- src/json_value.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/json_value.h b/src/json_value.h index cdf797a..56d88ca 100644 --- a/src/json_value.h +++ b/src/json_value.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include #include