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
// We create a sfinae wrapper method here, because if the body of the true_type overload for __assign_value__sfinae() gets template instantiated within __assign_value,
1403
+
// the code will fail to compile where the value is not copy_constructible for runtime execution as well; unless we use `if constexpr`.
1404
+
// Given the copy-constructible code path will be a performance regression, we want to restrict it to only execute during constant evaluation
1405
+
//, we need to delay the template instantiation
1383
1406
1384
-
using __node_value_type = __get_node_value_type_t<value_type>;
0 commit comments