Include <cstdint> in json_value.h for uint8_t

`escapeAsJsonString` uses `uint8_t` but the header did not include
`<cstdint>`, making it dependent on other headers to define the type.
Add the missing include so `json_value.h` is self-contained.
This commit is contained in:
2026-06-29 14:04:04 -04:00
parent 08b864d31b
commit e5c970a605
+1
View File
@@ -1,6 +1,7 @@
#pragma once
#include <cstddef>
#include <cstdint>
#include <map>
#include <memory>
#include <optional>