mirror of
https://github.com/systemd/systemd.git
synced 2024-11-07 18:27:04 +03:00
sd-bus: fix c++ compatibility (#5941)
g++ annoyingly requires a non-empty struct-initializer to initialize all struct members, in order of declaration. Signed-off-by: Matthijs van Duin <matthijsvanduin@gmail.com>
This commit is contained in:
parent
fc1b2dc395
commit
cc9daff228
@ -131,6 +131,7 @@ struct sd_bus_vtable {
|
||||
.member = _member, \
|
||||
.signature = _signature, \
|
||||
.get = _get, \
|
||||
.set = NULL, \
|
||||
.offset = _offset, \
|
||||
}, \
|
||||
}, \
|
||||
@ -154,6 +155,9 @@ struct sd_bus_vtable {
|
||||
#define SD_BUS_VTABLE_END \
|
||||
{ \
|
||||
.type = _SD_BUS_VTABLE_END, \
|
||||
.flags = 0, \
|
||||
.x = { \
|
||||
}, \
|
||||
}
|
||||
|
||||
_SD_END_DECLARATIONS;
|
||||
|
Loading…
Reference in New Issue
Block a user