summaryrefslogtreecommitdiffstats
path: root/platform/ios/os_ios.mm
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-11 11:02:31 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-11 11:02:31 +0200
commite73f40e26067cf265e311bbb895b80853574cd93 (patch)
tree4ed795b60e0ed8ecb1bc33b5aa873a7416a10b58 /platform/ios/os_ios.mm
parent5a386287d3ff8ca08fdaca14cd11ab9a0dec12f8 (diff)
parentb73e740786302b3e53f66d57f7a798031b1b0d26 (diff)
downloadredot-engine-e73f40e26067cf265e311bbb895b80853574cd93.tar.gz
Merge pull request #87117 from DmitriySalnikov/rename_pdb
Add renaming of PDB files to avoid blocking them
Diffstat (limited to 'platform/ios/os_ios.mm')
-rw-r--r--platform/ios/os_ios.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/os_ios.mm b/platform/ios/os_ios.mm
index ac13a4d457..c989dc6221 100644
--- a/platform/ios/os_ios.mm
+++ b/platform/ios/os_ios.mm
@@ -219,7 +219,7 @@ _FORCE_INLINE_ String OS_IOS::get_framework_executable(const String &p_path) {
return p_path;
}
-Error OS_IOS::open_dynamic_library(const String &p_path, void *&p_library_handle, bool p_also_set_library_path, String *r_resolved_path) {
+Error OS_IOS::open_dynamic_library(const String &p_path, void *&p_library_handle, bool p_also_set_library_path, String *r_resolved_path, bool p_generate_temp_files) {
if (p_path.length() == 0) {
// Static xcframework.
p_library_handle = RTLD_SELF;