Remove some unneeded default constructors.

Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2021-10-18 13:22:06 +01:00
parent b56a2450a1
commit f62e8c30a2
2 changed files with 0 additions and 3 deletions

View File

@ -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);

View File

@ -31,8 +31,6 @@ private:
ram_t m_ram;
public:
state_t();
#ifdef USE_SIMDJSON_JSON
state_t(simdjson::dom::element serialised);
#endif