From b56a2450a10f3146fe2576b9f652630eb7603750 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Mon, 18 Oct 2021 13:13:43 +0100 Subject: [PATCH] Couple of blank lines removed. Signed-off-by: Adrian Conlon --- M6502/HarteTest_6502/ram_t.cpp | 1 - M6502/HarteTest_6502/ram_t.h | 1 - 2 files changed, 2 deletions(-) diff --git a/M6502/HarteTest_6502/ram_t.cpp b/M6502/HarteTest_6502/ram_t.cpp index d13dcb0..ea890ff 100644 --- a/M6502/HarteTest_6502/ram_t.cpp +++ b/M6502/HarteTest_6502/ram_t.cpp @@ -53,7 +53,6 @@ ram_t::ram_t(const nlohmann::json& input) { #ifdef USE_JSONCPP_JSON ram_t::ram_t(const Json::Value& input) { - assert(input.isArray()); for (const auto& byte : input) { assert(byte.isArray()); diff --git a/M6502/HarteTest_6502/ram_t.h b/M6502/HarteTest_6502/ram_t.h index c9011d1..40a4195 100644 --- a/M6502/HarteTest_6502/ram_t.h +++ b/M6502/HarteTest_6502/ram_t.h @@ -52,4 +52,3 @@ public: [[nodiscard]] auto& at(size_t idx) { return m_bytes.at(idx); } [[nodiscard]] const auto& at(size_t idx) const { return m_bytes.at(idx); } }; -