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:
@@ -99,7 +99,7 @@ void NodePath::unref() {
|
||||
|
||||
memdelete(data);
|
||||
}
|
||||
data = NULL;
|
||||
data = nullptr;
|
||||
}
|
||||
|
||||
bool NodePath::operator==(const NodePath &p_path) const {
|
||||
@@ -189,7 +189,7 @@ NodePath::operator String() const {
|
||||
|
||||
NodePath::NodePath(const NodePath &p_path) {
|
||||
|
||||
data = NULL;
|
||||
data = nullptr;
|
||||
|
||||
if (p_path.data && p_path.data->refcount.ref()) {
|
||||
|
||||
@@ -287,7 +287,7 @@ NodePath NodePath::get_as_property_path() const {
|
||||
|
||||
NodePath::NodePath(const Vector<StringName> &p_path, bool p_absolute) {
|
||||
|
||||
data = NULL;
|
||||
data = nullptr;
|
||||
|
||||
if (p_path.size() == 0)
|
||||
return;
|
||||
@@ -302,7 +302,7 @@ NodePath::NodePath(const Vector<StringName> &p_path, bool p_absolute) {
|
||||
|
||||
NodePath::NodePath(const Vector<StringName> &p_path, const Vector<StringName> &p_subpath, bool p_absolute) {
|
||||
|
||||
data = NULL;
|
||||
data = nullptr;
|
||||
|
||||
if (p_path.size() == 0 && p_subpath.size() == 0)
|
||||
return;
|
||||
@@ -349,7 +349,7 @@ NodePath NodePath::simplified() const {
|
||||
|
||||
NodePath::NodePath(const String &p_path) {
|
||||
|
||||
data = NULL;
|
||||
data = nullptr;
|
||||
|
||||
if (p_path.length() == 0)
|
||||
return;
|
||||
@@ -442,7 +442,7 @@ bool NodePath::is_empty() const {
|
||||
}
|
||||
NodePath::NodePath() {
|
||||
|
||||
data = NULL;
|
||||
data = nullptr;
|
||||
}
|
||||
|
||||
NodePath::~NodePath() {
|
||||
|
||||
Reference in New Issue
Block a user