mirror of
https://github.com/boostorg/system.git
synced 2025-07-29 20:17:13 +02:00
Remove C++14-ism
This commit is contained in:
@ -897,7 +897,7 @@ template<class T, class U> struct is_value_convertible_to: std::is_convertible<T
|
||||
template<class T, class U> struct is_value_convertible_to<T, U&>:
|
||||
std::integral_constant<bool,
|
||||
std::is_lvalue_reference<T>::value &&
|
||||
std::is_convertible<std::remove_reference_t<T>*, U*>::value>
|
||||
std::is_convertible<typename std::remove_reference<T>::type*, U*>::value>
|
||||
{
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user