From 0cd351014b7b97047f3b9cd5d2b5557d9336c6e8 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 29 Oct 2023 01:41:50 +0300 Subject: [PATCH] Remove C++14-ism --- include/boost/system/result.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/system/result.hpp b/include/boost/system/result.hpp index c9b1b06..c587094 100644 --- a/include/boost/system/result.hpp +++ b/include/boost/system/result.hpp @@ -897,7 +897,7 @@ template struct is_value_convertible_to: std::is_convertible struct is_value_convertible_to: std::integral_constant::value && - std::is_convertible*, U*>::value> + std::is_convertible::type*, U*>::value> { };