Fix compiler warning for in keyvalue_serialization.h
This commit is contained in:
parent
b8f3e44a3f
commit
b900fa03c1
|
@ -73,7 +73,8 @@ public: \
|
||||||
template<bool is_store, class t_storage> \
|
template<bool is_store, class t_storage> \
|
||||||
bool serialize_map(t_storage& stg, typename t_storage::hsection hparent_section) \
|
bool serialize_map(t_storage& stg, typename t_storage::hsection hparent_section) \
|
||||||
{ \
|
{ \
|
||||||
decltype(*this) &this_ref = *this;
|
decltype(*this) &this_ref = *this; \
|
||||||
|
(void) this_ref; // Suppress unused var warnings. Sometimes this var is used, sometimes not.
|
||||||
|
|
||||||
#define KV_SERIALIZE_N(varialble, val_name) \
|
#define KV_SERIALIZE_N(varialble, val_name) \
|
||||||
epee::serialization::selector<is_store>::serialize(this_ref.varialble, stg, hparent_section, val_name);
|
epee::serialization::selector<is_store>::serialize(this_ref.varialble, stg, hparent_section, val_name);
|
||||||
|
|
Loading…
Reference in New Issue