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
if (std::is_constant_evaluated() && std::is_copy_constructible_v<decltype(__value.first)>) {
1076
+
1077
+
// We create a sfinae wrapper method here, because if the __emplace_hint_unique method gets template instantiated within __insert_unique_from_orphaned_node, the code will fail to compile where the value is not copy_constructible for runtime execution as well; unless we use `if constexpr`.
1078
+
// Given the copy-constructible code path will be a performance regression, we want to restrict it to only execute during constant evaluation
0 commit comments