Fix PtrToArg encoding for `Object *`.

It didn't set the return value at all, changing the local value instead.
Now instead correctly sets it as a generic pointer type from `_owner`.
pull/602/head
Fabio Alessandrelli 2021-09-22 02:46:29 +02:00 committed by Bastiaan Olij
parent 2b1100c878
commit cc88df05e7
1 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ struct PtrToArg<T *> {
}
typedef Object *EncodeT;
_FORCE_INLINE_ static void encode(T *p_var, void *p_ptr) {
p_ptr = p_var->_owner;
*((void **)p_ptr) = p_var->_owner;
}
};
@ -180,7 +180,7 @@ struct PtrToArg<const T *> {
}
typedef const Object *EncodeT;
_FORCE_INLINE_ static void encode(T *p_var, void *p_ptr) {
p_ptr = p_var->_owner;
*((void **)p_ptr) = p_var->_owner;
}
};