Fix specific warnings issues by Clang

Found by `scons dev=yes` on llvm-mingw.
This commit is contained in:
K. S. Ernest (iFire) Lee 2021-10-14 08:55:54 -07:00
parent f90047f158
commit 8f0c056431
6 changed files with 3 additions and 15 deletions

View file

@ -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);