\#10 Address compiler warnings

This commit is contained in:
2023-10-30 10:36:31 -05:00
parent 5dff8927da
commit b137b57dbc
6 changed files with 29 additions and 27 deletions

View File

@ -68,9 +68,9 @@ using event_consumer = event_system::event_consumer;
#define E_PROP(type, name, short_name, ts) \
private: \
void init_##short_name(const type &val) { \
ss_ << "|" << #short_name << "|" << ts(val); \
j_[#name] = ts(val); \
void init_##short_name(const type &val_##name) { \
ss_ << "|" << #short_name << "|" << ts(val_##name); \
j_[#name] = ts(val_##name); \
} \
\
public: \