mirror of
https://github.com/godotengine/godot.git
synced 2025-02-18 00:30:43 +00:00
Fixes Ref's GetTypeInfo missing with ptrcall disabled
This commit is contained in:
parent
7e5890d23d
commit
af4c4397df
@ -374,6 +374,10 @@ struct PtrToArg<const RefPtr &> {
|
||||
}
|
||||
};
|
||||
|
||||
#endif // PTRCALL_ENABLED
|
||||
|
||||
#ifdef DEBUG_METHODS_ENABLED
|
||||
|
||||
template <class T>
|
||||
struct GetTypeInfo<Ref<T> > {
|
||||
enum { VARIANT_TYPE = Variant::OBJECT };
|
||||
@ -392,5 +396,6 @@ struct GetTypeInfo<const Ref<T> &> {
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // DEBUG_METHODS_ENABLED
|
||||
|
||||
#endif // REFERENCE_H
|
||||
|
Loading…
Reference in New Issue
Block a user