| Index: ipc/struct_constructor_macros.h
|
| diff --git a/ipc/struct_constructor_macros.h b/ipc/struct_constructor_macros.h
|
| index ee056a356a83e7957dd919eff8e90e14544a3b56..4144302f15155b6b832f703bdef9acd2d68fbd3c 100644
|
| --- a/ipc/struct_constructor_macros.h
|
| +++ b/ipc/struct_constructor_macros.h
|
| @@ -16,7 +16,7 @@
|
| #define IPC_STRUCT_BEGIN(struct_name) struct_name::struct_name() : NoParams()
|
| #define IPC_STRUCT_BEGIN_WITH_PARENT(struct_name, parent) \
|
| struct_name::struct_name() : parent()
|
| -#define IPC_STRUCT_MEMBER(type, name) , name()
|
| +#define IPC_STRUCT_MEMBER(type, name, ...) , name(__VA_ARGS__)
|
| #define IPC_STRUCT_END() {}
|
|
|
| #endif // IPC_STRUCT_CONSTRUCTOR_MACROS_H_
|
|
|