Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[libc++] Fix flat_{multi}set insert_range #137462

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 16, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci
  • Loading branch information
huixie90 committed Apr 26, 2025
commit 5c0e4691e39c5568db39cf2ce426d753a265d53b
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ void test() {
MoveOnly expected[] = {1, 1, 3, 4, 5};
assert(std::ranges::equal(m, expected));
}
#ifdef _LIBCPP_HAS_LOCALIZATION
{
// https://github.com/llvm/llvm-project/issues/136656
MinSequenceContainer<int> v;
Expand All @@ -95,6 +96,7 @@ void test() {
std::views::transform([](int i) { return i * i; });
s.insert_range(r);
}
#endif
}

void test_exception() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ void test() {
MoveOnly expected[] = {1, 3, 4, 5};
assert(std::ranges::equal(m, expected));
}
#ifdef _LIBCPP_HAS_LOCALIZATION
{
// https://github.com/llvm/llvm-project/issues/136656
MinSequenceContainer<int> v;
Expand All @@ -106,6 +107,7 @@ void test() {
std::views::transform([](int i) { return i * i; });
s.insert_range(r);
}
#endif
}

void test_exception() {
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.