You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently (Boost 1.69) range_value<T>::type hard-fails to compile if T is not a range type. This is because it unconditionally uses range_iterator<T>::type and that type is missing in that case. Please, make range_value also SFINAE-friendly, i.e. so that it doesn't hard-fail the compilation but rather doesn't define the type type if T is not a range type.
The text was updated successfully, but these errors were encountered:
Currently (Boost 1.69)
range_value<T>::type
hard-fails to compile ifT
is not a range type. This is because it unconditionally usesrange_iterator<T>::type
and that type is missing in that case. Please, makerange_value
also SFINAE-friendly, i.e. so that it doesn't hard-fail the compilation but rather doesn't define thetype
type ifT
is not a range type.The text was updated successfully, but these errors were encountered: