summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/classes
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2023-09-20 07:32:14 -0500
committerGitHub <noreply@github.com>2023-09-20 07:32:14 -0500
commitb1fd1b65fd2bfbeac9704c2716ed20bcb08d7107 (patch)
treeb5ba76e9cc29d9c4459b0dceca43a524fab921d4 /include/godot_cpp/classes
parent0d6de7a80e328c1969c9feabaf268008764c6812 (diff)
parent1e5767693e45f58e2ffdc45d4c4f26057e25a2d6 (diff)
downloadredot-cpp-b1fd1b65fd2bfbeac9704c2716ed20bcb08d7107.tar.gz
Merge pull request #1242 from AThousandShips/null_check
Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicable
Diffstat (limited to 'include/godot_cpp/classes')
-rw-r--r--include/godot_cpp/classes/ref.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/classes/ref.hpp b/include/godot_cpp/classes/ref.hpp
index f30928a..f3fc3e9 100644
--- a/include/godot_cpp/classes/ref.hpp
+++ b/include/godot_cpp/classes/ref.hpp
@@ -63,7 +63,7 @@ class Ref {
}
void ref_pointer(T *p_ref) {
- ERR_FAIL_COND(!p_ref);
+ ERR_FAIL_NULL(p_ref);
if (p_ref->init_ref()) {
reference = p_ref;