@@ -1160,14 +1160,14 @@ class FJavascriptContextImplementation : public FJavascriptContext
1160
1160
auto Function1 = FuncMap->Get (context, I.Keyword (" prector" )).ToLocalChecked ();
1161
1161
1162
1162
auto ProxyFuncMap = ProxyFunctions->ToObject (context).ToLocalChecked ();
1163
- ProxyFuncMap->Set (context, I.Keyword (" ctor" ), Function0);
1164
- ProxyFuncMap->Set (context, I.Keyword (" prector" ), Function1);
1163
+ ( void ) ProxyFuncMap->Set (context, I.Keyword (" ctor" ), Function0);
1164
+ ( void ) ProxyFuncMap->Set (context, I.Keyword (" prector" ), Function1);
1165
1165
}
1166
1166
}
1167
1167
Context->Environment ->PublicExportUClass (Class);
1168
1168
1169
1169
auto aftr_v8_template = Context->ExportObject (Class);
1170
- aftr_v8_template->ToObject (context).ToLocalChecked ()->Set (context, I.Keyword (" proxy" ), ProxyFunctions);
1170
+ ( void )( aftr_v8_template->ToObject (context).ToLocalChecked ()->Set (context, I.Keyword (" proxy" ), ProxyFunctions) );
1171
1171
1172
1172
Class->GetDefaultObject (true );
1173
1173
@@ -1312,7 +1312,7 @@ class FJavascriptContextImplementation : public FJavascriptContext
1312
1312
Context->Environment ->PublicExportStruct (Struct);
1313
1313
1314
1314
auto aftr_v8_template = Context->ExportObject (Struct);
1315
- aftr_v8_template->ToObject (context).ToLocalChecked ()->Set (context, I.Keyword (" proxy" ), ProxyFunctions);
1315
+ ( void )( aftr_v8_template->ToObject (context).ToLocalChecked ()->Set (context, I.Keyword (" proxy" ), ProxyFunctions) );
1316
1316
auto end = FPlatformTime::Seconds ();
1317
1317
UE_LOG (Javascript, Warning, TEXT (" Rebind UStruct(%s) Elapsed: %.6f" ), *Struct->GetName (), end - start);
1318
1318
#endif
0 commit comments