فهرست منبع

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]].
Sam Atkins 3 سال پیش
والد
کامیت
f3d8f80e9c
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Meta/Lagom/Tools/CodeGenerators/IPCCompiler/main.cpp

+ 1 - 1
Meta/Lagom/Tools/CodeGenerators/IPCCompiler/main.cpp

@@ -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@>(");