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
No known key found for this signature in database
GPG key ID: 6F79797A6E392442
5 changed files with 94 additions and 94 deletions

View file

@ -105,7 +105,7 @@ public: \
#define KV_SERIALIZE_VAL_POD_AS_BLOB_OPT_N(varialble, val_name, default_value) \
do { \
static_assert(std::is_pod<decltype(this_ref.varialble)>::value, "t_type must be a POD type."); \
bool ret = KV_SERIALIZE_VAL_POD_AS_BLOB_FORCE_N(varialble, val_name); \
bool ret = KV_SERIALIZE_VAL_POD_AS_BLOB_FORCE_N(varialble, val_name) \
if (!ret) \
epee::serialize_default(this_ref.varialble, default_value); \
} while(0);