src/json_value.h uses uint8_t in escapeAsJsonString but did not include <cstdint>, so any translation unit that included this header without first including <cstdint> failed to compile. Add the missing include so the header is self-contained.
Closes #37
`src/json_value.h` uses `uint8_t` in `escapeAsJsonString` but did not include `<cstdint>`, so any translation unit that included this header without first including `<cstdint>` failed to compile. Add the missing include so the header is self-contained.
`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.
andrew
scheduled this pull request to auto merge when all checks succeed 2026-06-29 18:38:16 +00:00
andrew
merged commit 4bd1088018 into main2026-06-29 18:57:42 +00:00
andrew
deleted branch weaselbot/issue-372026-06-29 18:57:42 +00:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Closes #37
src/json_value.husesuint8_tinescapeAsJsonStringbut did not include<cstdint>, so any translation unit that included this header without first including<cstdint>failed to compile. Add the missing include so the header is self-contained.