diff options
author | jeffro256 <jeffro256@tutanota.com> | 2023-08-10 11:13:14 -0500 |
---|---|---|
committer | jeffro256 <jeffro256@tutanota.com> | 2023-08-10 11:13:14 -0500 |
commit | 8190f2532bbd4e5431a8da6dc1236c422cb1c848 (patch) | |
tree | cb5a70238720a2c8f4dd8ac1321c8757c1fba3c8 /tests/unit_tests | |
parent | Merge pull request #8919 (diff) | |
download | monero-8190f2532bbd4e5431a8da6dc1236c422cb1c848.tar.xz |
`KV_SERIALIZE`: remove extraneous semicolons in DSL
Prereq of https://github.com/monero-project/monero/pull/8867
Diffstat (limited to 'tests/unit_tests')
-rw-r--r-- | tests/unit_tests/net.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit_tests/net.cpp b/tests/unit_tests/net.cpp index 03072b283..db89678c4 100644 --- a/tests/unit_tests/net.cpp +++ b/tests/unit_tests/net.cpp @@ -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() }; } |