IPCCompiler: Cast return value of synchronous void IPC calls to void

The synchronous call returns a NonnullOwnPtr that we don't use, so we
have to cast to prevent a compiler warning once smart pointers become
[[nodiscard]].
This commit is contained in:
Sam Atkins 2021-12-02 12:10:28 +00:00 committed by Andreas Kling
parent 2aa0885220
commit f3d8f80e9c

View file

@ -544,7 +544,7 @@ public:
message_generator.append("move(*");
} else {
message_generator.append(R"~~~(
)~~~");
(void) )~~~");
}
message_generator.append("m_connection.template send_sync<Messages::@endpoint.name@::@message.pascal_name@>(");