We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cafae7 commit d72cf89Copy full SHA for d72cf89
libcxx/include/__tree
@@ -1220,6 +1220,11 @@ private:
1220
1221
#if _LIBCPP_STD_VER >= 26
1222
// TODO: also add SFINAE to prevent move_assign and move_alloc from instantiating this code
1223
+ // because of
1224
+ /*
1225
+error: no matching constructor for initialization of '__get_node_value_type_t<value_type>' (aka 'std::pair<const MoveOnly, MoveOnly>')
1226
+# | 1225 | __get_node_value_type_t<value_type> __tmp(__rhs.first, __rhs.second);
1227
+ */
1228
if (__libcpp_is_constant_evaluated()) {
1229
using __node_value_type = __get_node_value_type_t<value_type>;
1230
__get_node_value_type_t<value_type> __tmp(__rhs.first, __rhs.second);
0 commit comments