Use Null() instead of declval(), hoping to fix some bots
This commit is contained in:
parent
3d22900f62
commit
cb27918d0a
|
@ -165,7 +165,7 @@ template<typename T, typename B>
|
|||
struct _hb_is_iterable
|
||||
{ enum { value = false }; };
|
||||
template<typename T>
|
||||
struct _hb_is_iterable<T, hb_bool_tt<true || sizeof (hb_declval<T> ().iter ())> >
|
||||
struct _hb_is_iterable<T, hb_bool_tt<true || sizeof (Null(T).iter ())> >
|
||||
{ enum { value = true }; };
|
||||
|
||||
template<typename T>
|
||||
|
|
Loading…
Reference in New Issue