KV_SERIALIZE: remove extraneous semicolons in DSL

Prereq of https://github.com/monero-project/monero/pull/8867
This commit is contained in:
jeffro256
2023-08-10 11:13:14 -05:00
parent 00fd416a99
commit 8190f2532b
5 changed files with 94 additions and 94 deletions

View File

@@ -239,7 +239,7 @@ namespace
net::tor_address tor;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(tor);
KV_SERIALIZE(tor)
END_KV_SERIALIZE_MAP()
};
}
@@ -694,7 +694,7 @@ namespace
net::i2p_address i2p;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(i2p);
KV_SERIALIZE(i2p)
END_KV_SERIALIZE_MAP()
};
}