diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-08 14:03:08 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-12 09:57:41 +0000 |
| commit | f5f7c2ac245523b5a78a9aff57f05077ff352c1f (patch) | |
| tree | 84cc1cb459a2cd3e3d5968288fcaa2bc7d2df588 | |
| parent | e19652df51aa821818a9e78bb84f966eb0901476 (diff) | |
| download | monzero-core-f5f7c2ac245523b5a78a9aff57f05077ff352c1f.tar.gz monzero-core-f5f7c2ac245523b5a78a9aff57f05077ff352c1f.tar.xz monzero-core-f5f7c2ac245523b5a78a9aff57f05077ff352c1f.zip | |
rpc: blanket initialize 0MQ request and response structures
| -rw-r--r-- | src/rpc/daemon_messages.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/daemon_messages.h b/src/rpc/daemon_messages.h index 8fff369df..be3138e3b 100644 --- a/src/rpc/daemon_messages.h +++ b/src/rpc/daemon_messages.h @@ -67,7 +67,7 @@ class classname \ // NOTE: when using a type with multiple template parameters, // replace any comma in the template specifier with the macro // above, or the preprocessor will eat the comma in a bad way. -#define RPC_MESSAGE_MEMBER(type, name) type name; +#define RPC_MESSAGE_MEMBER(type, name) type name = type{} namespace cryptonote |
