From f62e8c30a2f20cd10742a69d2f6580580ec0eee3 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Mon, 18 Oct 2021 13:22:06 +0100 Subject: [PATCH] Remove some unneeded default constructors. Signed-off-by: Adrian Conlon --- M6502/HarteTest_6502/cycle_t.h | 1 - M6502/HarteTest_6502/state_t.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/M6502/HarteTest_6502/cycle_t.h b/M6502/HarteTest_6502/cycle_t.h index 968e9b1..7fe9f9f 100644 --- a/M6502/HarteTest_6502/cycle_t.h +++ b/M6502/HarteTest_6502/cycle_t.h @@ -32,7 +32,6 @@ public: [[nodiscard]] static action_t to_action(std::string value); [[nodiscard]] static std::string to_string(action_t value); - cycle_t() {} cycle_t(uint16_t address, uint8_t value, action_t action); cycle_t(uint16_t address, uint8_t value, std::string action); diff --git a/M6502/HarteTest_6502/state_t.h b/M6502/HarteTest_6502/state_t.h index f2b0933..74bf46c 100644 --- a/M6502/HarteTest_6502/state_t.h +++ b/M6502/HarteTest_6502/state_t.h @@ -31,8 +31,6 @@ private: ram_t m_ram; public: - state_t(); - #ifdef USE_SIMDJSON_JSON state_t(simdjson::dom::element serialised); #endif