summaryrefslogtreecommitdiff
path: root/platform/osx/export/export_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-10-15 00:38:08 +0200
committerGitHub <noreply@github.com>2021-10-15 00:38:08 +0200
commit78ddae851256986d9bb46dd0cd6510225d6f2584 (patch)
tree42925ddaf2b31c4d055988367b527c3ee86c9a0f /platform/osx/export/export_plugin.cpp
parent8aef0e3ad97c61cb8c9cd29d5d1a1771dc2f656c (diff)
parent8f0c056431d484502c758b912975c35c7f5653f7 (diff)
Merge pull request #53811 from V-Sekai/dev-yes
Fix specific warnings issues by Clang
Diffstat (limited to 'platform/osx/export/export_plugin.cpp')
-rw-r--r--platform/osx/export/export_plugin.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/platform/osx/export/export_plugin.cpp b/platform/osx/export/export_plugin.cpp
index 2404c20153..60a878d644 100644
--- a/platform/osx/export/export_plugin.cpp
+++ b/platform/osx/export/export_plugin.cpp
@@ -561,7 +561,6 @@ Error EditorExportPlatformOSX::export_project(const Ref<EditorExportPreset> &p_p
// Now process our template.
bool found_binary = false;
- int total_size = 0;
Vector<String> dylibs_found;
while (ret == UNZ_OK && err == OK) {
@@ -649,7 +648,6 @@ Error EditorExportPlatformOSX::export_project(const Ref<EditorExportPreset> &p_p
}
print_line("ADDING: " + file + " size: " + itos(data.size()));
- total_size += data.size();
// Write it into our application bundle.
file = tmp_app_path_name.plus_file(file);