Better try at previous commit

985b63b3ee (commitcomment-63973544)
This commit is contained in:
Behdad Esfahbod 2022-01-16 07:49:40 -07:00
parent 1173ed1f7f
commit 19793f333b
1 changed files with 2 additions and 2 deletions

View File

@ -212,10 +212,10 @@ struct
HB_FUNCOBJ (hb_bool);
template <typename T>
HB_INTERNAL T hb_coerce (const T v) { return v; }
inline T hb_coerce (const T v) { return v; }
template <typename T, typename V,
hb_enable_if (!hb_is_same (hb_decay<T>, hb_decay<V>) && std::is_pointer<V>::value)>
HB_INTERNAL T hb_coerce (const V v) { return *v; }
inline T hb_coerce (const V v) { return *v; }
struct
{