From 06494afd403a172e76a630ee8c157d3b4c1bc59e Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Tue, 14 May 2024 07:58:24 +0200 Subject: [PATCH] cpu serialization fix --- cpu.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/cpu.h b/cpu.h index 969db08..1de9a60 100644 --- a/cpu.h +++ b/cpu.h @@ -115,10 +115,8 @@ public: explicit cpu(bus *const b, std::atomic_uint32_t *const event); ~cpu(); -#if IS_POSIX JsonDocument serialize(); static cpu *deserialize(const JsonDocument j, bus *const b, std::atomic_uint32_t *const event); -#endif std::optional check_breakpoint(); int set_breakpoint(breakpoint *const bp);