Skip to content

Commit 9c47574

Browse files
more?
1 parent d24dbc2 commit 9c47574

File tree

1 file changed

+2
-2
lines changed
  • libcxx/include

1 file changed

+2
-2
lines changed

libcxx/include/set

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -953,7 +953,7 @@ set<_Key, _Compare, _Allocator>::set(set&& __s, const allocator_type& __a) : __t
953953
if (__a != __s.get_allocator()) {
954954
const_iterator __e = cend();
955955
while (!__s.empty())
956-
insert(__e, std::move(__s.__tree_.remove(__s.begin())->__value_));
956+
insert(__e, std::move(__s.__tree_.remove(__s.begin())->__get_value()));
957957
}
958958
}
959959

@@ -1416,7 +1416,7 @@ multiset<_Key, _Compare, _Allocator>::multiset(multiset&& __s, const allocator_t
14161416
if (__a != __s.get_allocator()) {
14171417
const_iterator __e = cend();
14181418
while (!__s.empty())
1419-
insert(__e, std::move(__s.__tree_.remove(__s.begin())->__value_));
1419+
insert(__e, std::move(__s.__tree_.remove(__s.begin())->__get_value()));
14201420
}
14211421
}
14221422

0 commit comments

Comments
 (0)