mirror of
https://github.com/godotengine/godot.git
synced 2025-02-17 00:01:03 +00:00
Merge pull request #82903 from RandomShaper/cast_to_expl_null
Help compilers optimize `Object::cast_to()`
This commit is contained in:
commit
7307eef89d
@ -798,12 +798,12 @@ public:
|
||||
|
||||
template <class T>
|
||||
static T *cast_to(Object *p_object) {
|
||||
return dynamic_cast<T *>(p_object);
|
||||
return p_object ? dynamic_cast<T *>(p_object) : nullptr;
|
||||
}
|
||||
|
||||
template <class T>
|
||||
static const T *cast_to(const Object *p_object) {
|
||||
return dynamic_cast<const T *>(p_object);
|
||||
return p_object ? dynamic_cast<const T *>(p_object) : nullptr;
|
||||
}
|
||||
|
||||
enum {
|
||||
|
Loading…
Reference in New Issue
Block a user