mirror of
https://github.com/godotengine/godot.git
synced 2025-11-03 15:11:19 +00:00
Style: Apply clang-tidy's modernize-use-nullptr
This commit is contained in:
parent
65a2888057
commit
9bbe51dc27
21 changed files with 50 additions and 50 deletions
|
|
@ -550,7 +550,7 @@ Error EditorExportPlatformJavaScript::export_project(const Ref<EditorExportPrese
|
|||
if (f) {
|
||||
file_sizes[pck_path.get_file()] = (uint64_t)f->get_len();
|
||||
memdelete(f);
|
||||
f = NULL;
|
||||
f = nullptr;
|
||||
}
|
||||
_fix_html(html, p_preset, p_path.get_file().get_basename(), p_debug, p_flags, shared_objects, file_sizes);
|
||||
f = FileAccess::open(p_path, FileAccess::WRITE);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue