You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +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:
@@ -202,7 +202,7 @@ ScriptInstance *NativeScript::instance_create(Object *p_this) {
|
||||
NativeScriptDesc *script_data = get_script_desc();
|
||||
|
||||
if (!script_data) {
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
NativeScriptInstance *nsi = memnew(NativeScriptInstance);
|
||||
@@ -472,7 +472,7 @@ Variant NativeScript::_new(const Variant **p_args, int p_argcount, Variant::Call
|
||||
r_error.error = Variant::CallError::CALL_OK;
|
||||
|
||||
REF ref;
|
||||
Object *owner = NULL;
|
||||
Object *owner = nullptr;
|
||||
|
||||
if (!(script_data->base_native_type == "")) {
|
||||
owner = ClassDB::instance(script_data->base_native_type);
|
||||
@@ -618,7 +618,7 @@ void NativeScriptInstance::get_property_list(List<PropertyInfo> *p_properties) c
|
||||
E->get().method.method_data,
|
||||
userdata,
|
||||
0,
|
||||
NULL);
|
||||
nullptr);
|
||||
Variant res = *(Variant *)&result;
|
||||
godot_variant_destroy(&result);
|
||||
|
||||
@@ -736,7 +736,7 @@ void NativeScriptInstance::notification(int p_notification) {
|
||||
String NativeScriptInstance::to_string(bool *r_valid) {
|
||||
if (has_method(CoreStringNames::get_singleton()->_to_string)) {
|
||||
Variant::CallError ce;
|
||||
Variant ret = call(CoreStringNames::get_singleton()->_to_string, NULL, 0, ce);
|
||||
Variant ret = call(CoreStringNames::get_singleton()->_to_string, nullptr, 0, ce);
|
||||
if (ce.error == Variant::CallError::CALL_OK) {
|
||||
if (ret.get_type() != Variant::STRING) {
|
||||
if (r_valid)
|
||||
@@ -755,7 +755,7 @@ String NativeScriptInstance::to_string(bool *r_valid) {
|
||||
|
||||
void NativeScriptInstance::refcount_incremented() {
|
||||
Variant::CallError err;
|
||||
call("_refcount_incremented", NULL, 0, err);
|
||||
call("_refcount_incremented", nullptr, 0, err);
|
||||
if (err.error != Variant::CallError::CALL_OK && err.error != Variant::CallError::CALL_ERROR_INVALID_METHOD) {
|
||||
ERR_PRINT("Failed to invoke _refcount_incremented - should not happen");
|
||||
}
|
||||
@@ -763,7 +763,7 @@ void NativeScriptInstance::refcount_incremented() {
|
||||
|
||||
bool NativeScriptInstance::refcount_decremented() {
|
||||
Variant::CallError err;
|
||||
Variant ret = call("_refcount_decremented", NULL, 0, err);
|
||||
Variant ret = call("_refcount_decremented", nullptr, 0, err);
|
||||
if (err.error != Variant::CallError::CALL_OK && err.error != Variant::CallError::CALL_ERROR_INVALID_METHOD) {
|
||||
ERR_PRINT("Failed to invoke _refcount_decremented - should not happen");
|
||||
return true; // assume we can destroy the object
|
||||
@@ -1274,14 +1274,14 @@ void NativeScriptLanguage::unregister_binding_functions(int p_idx) {
|
||||
}
|
||||
|
||||
void *NativeScriptLanguage::get_instance_binding_data(int p_idx, Object *p_object) {
|
||||
ERR_FAIL_INDEX_V(p_idx, binding_functions.size(), NULL);
|
||||
ERR_FAIL_INDEX_V(p_idx, binding_functions.size(), nullptr);
|
||||
|
||||
ERR_FAIL_COND_V_MSG(!binding_functions[p_idx].first, NULL, "Tried to get binding data for a nativescript binding that does not exist.");
|
||||
ERR_FAIL_COND_V_MSG(!binding_functions[p_idx].first, nullptr, "Tried to get binding data for a nativescript binding that does not exist.");
|
||||
|
||||
Vector<void *> *binding_data = (Vector<void *> *)p_object->get_script_instance_binding(lang_idx);
|
||||
|
||||
if (!binding_data)
|
||||
return NULL; // should never happen.
|
||||
return nullptr; // should never happen.
|
||||
|
||||
if (binding_data->size() <= p_idx) {
|
||||
// okay, add new elements here.
|
||||
@@ -1396,12 +1396,12 @@ void NativeScriptLanguage::set_global_type_tag(int p_idx, StringName p_class_nam
|
||||
|
||||
const void *NativeScriptLanguage::get_global_type_tag(int p_idx, StringName p_class_name) const {
|
||||
if (!global_type_tags.has(p_idx))
|
||||
return NULL;
|
||||
return nullptr;
|
||||
|
||||
const HashMap<StringName, const void *> &tags = global_type_tags[p_idx];
|
||||
|
||||
if (!tags.has(p_class_name))
|
||||
return NULL;
|
||||
return nullptr;
|
||||
|
||||
const void *tag = tags.get(p_class_name);
|
||||
|
||||
@@ -1748,7 +1748,7 @@ Error ResourceFormatSaverNativeScript::save(const String &p_path, const RES &p_r
|
||||
}
|
||||
|
||||
bool ResourceFormatSaverNativeScript::recognize(const RES &p_resource) const {
|
||||
return Object::cast_to<NativeScript>(*p_resource) != NULL;
|
||||
return Object::cast_to<NativeScript>(*p_resource) != nullptr;
|
||||
}
|
||||
|
||||
void ResourceFormatSaverNativeScript::get_recognized_extensions(const RES &p_resource, List<String> *p_extensions) const {
|
||||
|
||||
Reference in New Issue
Block a user