diff --git a/core/reference.h b/core/reference.h index 4e2d6c36c00..90f2791f4bf 100644 --- a/core/reference.h +++ b/core/reference.h @@ -330,7 +330,7 @@ struct PtrToArg > { _FORCE_INLINE_ static Ref convert(const void *p_ptr) { - return Ref(reinterpret_cast(p_ptr)); + return Ref(const_cast(reinterpret_cast(p_ptr))); } _FORCE_INLINE_ static void encode(Ref p_val, const void *p_ptr) { @@ -355,7 +355,7 @@ struct PtrToArg { _FORCE_INLINE_ static RefPtr convert(const void *p_ptr) { - return Ref(reinterpret_cast(p_ptr)).get_ref_ptr(); + return Ref(const_cast(reinterpret_cast(p_ptr))).get_ref_ptr(); } _FORCE_INLINE_ static void encode(RefPtr p_val, const void *p_ptr) { @@ -370,7 +370,7 @@ struct PtrToArg { _FORCE_INLINE_ static RefPtr convert(const void *p_ptr) { - return Ref(reinterpret_cast(p_ptr)).get_ref_ptr(); + return Ref(const_cast(reinterpret_cast(p_ptr))).get_ref_ptr(); } };