diff options
author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2021-10-14 08:55:54 -0700 |
---|---|---|
committer | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2021-10-14 14:14:26 -0700 |
commit | 8f0c056431d484502c758b912975c35c7f5653f7 (patch) | |
tree | 3eb2af7da42d2e58d1efead3f339a613b3667620 /platform/osx/export/export_plugin.cpp | |
parent | f90047f1583cdb8f4d7346a626b4992406761331 (diff) | |
download | redot-engine-8f0c056431d484502c758b912975c35c7f5653f7.tar.gz |
Fix specific warnings issues by Clang
Found by `scons dev=yes` on llvm-mingw.
Diffstat (limited to 'platform/osx/export/export_plugin.cpp')
-rw-r--r-- | platform/osx/export/export_plugin.cpp | 2 |
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); |