summaryrefslogtreecommitdiffstats
path: root/platform/iphone/export/export_plugin.cpp
diff options
context:
space:
mode:
authorK. S. Ernest (iFire) Lee <ernest.lee@chibifire.com>2021-10-14 08:55:54 -0700
committerK. S. Ernest (iFire) Lee <ernest.lee@chibifire.com>2021-10-14 14:14:26 -0700
commit8f0c056431d484502c758b912975c35c7f5653f7 (patch)
tree3eb2af7da42d2e58d1efead3f339a613b3667620 /platform/iphone/export/export_plugin.cpp
parentf90047f1583cdb8f4d7346a626b4992406761331 (diff)
downloadredot-engine-8f0c056431d484502c758b912975c35c7f5653f7.tar.gz
Fix specific warnings issues by Clang
Found by `scons dev=yes` on llvm-mingw.
Diffstat (limited to 'platform/iphone/export/export_plugin.cpp')
-rw-r--r--platform/iphone/export/export_plugin.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/platform/iphone/export/export_plugin.cpp b/platform/iphone/export/export_plugin.cpp
index 69a8203e9f..a561da41c0 100644
--- a/platform/iphone/export/export_plugin.cpp
+++ b/platform/iphone/export/export_plugin.cpp
@@ -1427,7 +1427,6 @@ Error EditorExportPlatformIOS::export_project(const Ref<EditorExportPreset> &p_p
}
bool found_library = false;
- int total_size = 0;
const String project_file = "godot_ios.xcodeproj/project.pbxproj";
Set<String> files_to_parse;
@@ -1523,7 +1522,6 @@ Error EditorExportPlatformIOS::export_project(const Ref<EditorExportPreset> &p_p
file = file.replace("godot_ios", binary_name);
print_line("ADDING: " + file + " size: " + itos(data.size()));
- total_size += data.size();
/* write it into our folder structure */
file = dest_dir + file;