You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Replace NULL with nullptr
This commit is contained in:
@@ -196,7 +196,7 @@ public:
|
||||
update_item(this) {
|
||||
|
||||
octree_id = 0;
|
||||
scenario = NULL;
|
||||
scenario = nullptr;
|
||||
|
||||
update_aabb = false;
|
||||
update_dependencies = false;
|
||||
@@ -213,9 +213,9 @@ public:
|
||||
last_render_pass = 0;
|
||||
last_frame_pass = 0;
|
||||
version = 1;
|
||||
base_data = NULL;
|
||||
base_data = nullptr;
|
||||
|
||||
custom_aabb = NULL;
|
||||
custom_aabb = nullptr;
|
||||
}
|
||||
|
||||
~Instance() {
|
||||
@@ -301,9 +301,9 @@ public:
|
||||
InstanceLightData() {
|
||||
|
||||
shadow_dirty = true;
|
||||
D = NULL;
|
||||
D = nullptr;
|
||||
last_version = 0;
|
||||
baked_light = NULL;
|
||||
baked_light = nullptr;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user