mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
clang-tidy: Enforce modernize-use-nullptr
This commit is contained in:
parent
b18942d429
commit
3b3e2374c9
24 changed files with 98 additions and 100 deletions
|
@ -464,7 +464,7 @@ void VersionControlEditorPlugin::_force_push() {
|
|||
void VersionControlEditorPlugin::_update_opened_tabs() {
|
||||
Vector<EditorData::EditedScene> open_scenes = EditorNode::get_editor_data().get_edited_scenes();
|
||||
for (int i = 0; i < open_scenes.size(); i++) {
|
||||
if (open_scenes[i].root == NULL) {
|
||||
if (open_scenes[i].root == nullptr) {
|
||||
continue;
|
||||
}
|
||||
EditorNode::get_singleton()->reload_scene(open_scenes[i].path);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue