mirror of
https://github.com/RGBCube/serenity
synced 2025-07-23 17:37:34 +00:00
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:
parent
2aa0885220
commit
f3d8f80e9c
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ public:
|
||||||
message_generator.append("move(*");
|
message_generator.append("move(*");
|
||||||
} else {
|
} else {
|
||||||
message_generator.append(R"~~~(
|
message_generator.append(R"~~~(
|
||||||
)~~~");
|
(void) )~~~");
|
||||||
}
|
}
|
||||||
|
|
||||||
message_generator.append("m_connection.template send_sync<Messages::@endpoint.name@::@message.pascal_name@>(");
|
message_generator.append("m_connection.template send_sync<Messages::@endpoint.name@::@message.pascal_name@>(");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue