You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Style: Replaces uses of 0/NULL by nullptr (C++11)
Using clang-tidy's `modernize-use-nullptr`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
This commit is contained in:
@@ -86,7 +86,7 @@ SkeletonIKEditorPlugin::SkeletonIKEditorPlugin(EditorNode *p_node) {
|
||||
play_btn->hide();
|
||||
play_btn->connect("pressed", this, "_play");
|
||||
add_control_to_container(CONTAINER_SPATIAL_EDITOR_MENU, play_btn);
|
||||
skeleton_ik = NULL;
|
||||
skeleton_ik = nullptr;
|
||||
}
|
||||
|
||||
SkeletonIKEditorPlugin::~SkeletonIKEditorPlugin() {}
|
||||
|
||||
Reference in New Issue
Block a user