-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Merge main
to feature/flat_set
#4018
Merged
StephanTLavavej
merged 22 commits into
microsoft:feature/flat_set
from
StephanTLavavej:update-flat_set
Sep 8, 2023
Merged
Merge main
to feature/flat_set
#4018
StephanTLavavej
merged 22 commits into
microsoft:feature/flat_set
from
StephanTLavavej:update-flat_set
Sep 8, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ft#3956) Co-authored-by: Casey Carter <[email protected]>
... via defining `_ENABLE_CONSTEXPR_MUTEX_CONSTRUCTOR`, instead of opt-out via `_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR`. This avoids potential breakage until we can update the VCLibs UWP framework libraries.
* Deprecate the contents in `<cvt/meow>` headers Also make the deprecation of Microsoft extensions controlled by `_SILENCE_ALL_MS_EXT_DEPRECATION_WARNINGS`. * Centralize suppression in `tests/tr1/tests/cvt/env.lst`. * Improve message grammar. --------- Co-authored-by: Stephan T. Lavavej <[email protected]>
... to ease auto-vectorization. --------- Co-authored-by: Stephan T. Lavavej <[email protected]> Co-authored-by: Casey Carter <[email protected]>
Remove workarounds for DevCom-1559808, relabeling some as now working around DevCom-10452846.
After discussion and buy-in from other Standard Library maintainers, we've decided to support the named modules (`std` and `std.compat`) from C++23 in C++20 mode.
The ASan runtime refuses to throw exceptions for overlarge allocations.
…osoft#3989) ... even with two potentially-infinite ranges. Drive by: Pull non-dependent test cases out of the `instantiator::call` template magic in `tests/P0896R4_ranges_alg_lexicographical_compare`. Fixes VSO-1854238
This test constructs a `regex_iterator` and a `regex_token_iterator` with invalid character ranges. The first occurrence is benign - the test never directs the library to examine the bogus part of the range - but the second case ventures into the land of pure undefined behavior. Caught by ASan. Fixes VSO-1854241
…ft#4013) Co-authored-by: Casey Carter <[email protected]> Co-authored-by: Stephan T. Lavavej <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This merges
main
intofeature/flat_set
and fixes the stealth merge conflict with #3977.I've added one extra tiny commit to use 4-arg
std::equal
in theflat_set
test, which avoids the hazardous 3-arg and the need to separately check the sizes.