diff options
| author | Riccardo Spagni <ric@spagni.net> | 2018-10-26 22:41:43 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2018-10-26 22:41:43 +0200 |
| commit | 00a7d441d6c05bb05e636a9041705e768200db2c (patch) | |
| tree | bf40d89032ea8846776ec99a7b92683813ba39d7 /src | |
| parent | 20d3605a543199e3f9c58d93ac4eab6bf2406e2b (diff) | |
| parent | 0aff49873c28ae6d9718f790860b103ce7142354 (diff) | |
| download | monzero-core-00a7d441d6c05bb05e636a9041705e768200db2c.tar.gz monzero-core-00a7d441d6c05bb05e636a9041705e768200db2c.tar.xz monzero-core-00a7d441d6c05bb05e636a9041705e768200db2c.zip | |
Merge pull request #4719
0aff4987 rpc: fix build with older compilers (moneromooo-monero)
Diffstat (limited to 'src')
| -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 be3138e3b..8488bab0b 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 = type{} +#define RPC_MESSAGE_MEMBER(type, name) type name = {} namespace cryptonote |
