diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-04-02 17:37:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 17:37:09 +0200 |
commit | b50387c8bf2737e7f100c6c32350d97301a6f2a3 (patch) | |
tree | 34402b0e324fc512a6cd8bd5bc85a3cc042fec30 /modules/mono/editor/bindings_generator.cpp | |
parent | 6a38ce1b318cc71c285c11f5b52f04a681c309fd (diff) | |
parent | ea7b497065a615b6fd4e165b331f50613a63a329 (diff) |
Merge pull request #37521 from akien-mga/more-nullptr
Replace more occurrences of NULL with nullptr
Diffstat (limited to 'modules/mono/editor/bindings_generator.cpp')
-rw-r--r-- | modules/mono/editor/bindings_generator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/bindings_generator.cpp b/modules/mono/editor/bindings_generator.cpp index 6cd10a94f9..438bec993c 100644 --- a/modules/mono/editor/bindings_generator.cpp +++ b/modules/mono/editor/bindings_generator.cpp @@ -2187,7 +2187,7 @@ Error BindingsGenerator::_generate_glue_method(const BindingsGenerator::TypeInte } p_output.append(CS_PARAM_METHODBIND "->call(" CS_PARAM_INSTANCE ", "); - p_output.append(p_imethod.arguments.size() ? C_LOCAL_PTRCALL_ARGS ".ptr()" : "NULL"); + p_output.append(p_imethod.arguments.size() ? C_LOCAL_PTRCALL_ARGS ".ptr()" : "nullptr"); p_output.append(", total_length, vcall_error);\n"); if (!ret_void) { |