Merge pull request #8969

8190f25 KV_SERIALIZE: remove extraneous semicolons in DSL (jeffro256)
This commit is contained in:
luigi1111 2023-10-25 21:35:43 -04:00
commit e3d0154b5b
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
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()
};
}
@ -611,7 +611,7 @@ namespace
net::i2p_address i2p;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(i2p);
KV_SERIALIZE(i2p)
END_KV_SERIALIZE_MAP()
};
}