Enable compiler warnings, remove dead code, fix unused variable

This commit is contained in:
Ian Gulliver
2026-04-04 20:52:54 +09:00
parent 6f95d5d595
commit 3af0f7695d
3 changed files with 2 additions and 7 deletions

View File

@@ -434,7 +434,6 @@ public:
result<parser> next() const {
auto hdr = header_byte();
if (!hdr) return std::unexpected(hdr.error());
uint8_t b = *hdr;
if (is_array()) {
auto info = get_body_info(m_p, m_size);