Couple of blank lines removed.

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

View File

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

View File

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