-
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
VS 2019 16.9 Preview 1 toolset update #1451
Merged
StephanTLavavej
merged 19 commits into
microsoft:master
from
StephanTLavavej:vs_2019_16.9_p1
Nov 13, 2020
Merged
VS 2019 16.9 Preview 1 toolset update #1451
StephanTLavavej
merged 19 commits into
microsoft:master
from
StephanTLavavej:vs_2019_16.9_p1
Nov 13, 2020
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
CaseyCarter
approved these changes
Nov 12, 2020
CaseyCarter
approved these changes
Nov 12, 2020
CaseyCarter
approved these changes
Nov 12, 2020
cbezault
approved these changes
Nov 12, 2020
(I'm trying to get the internal test suite to pass, hence the back-and-forth commits) |
This was referenced Nov 13, 2020
Merged
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 updates the toolset to VS 2019 16.9 Preview 1 and removes a bunch of compiler bug workarounds.
.github/ISSUE_TEMPLATE/cxx23-feature.md
CMakeLists.txt
README.md
azure-devops/create-vmss.ps1
$TotalProgress
and add an initial step toSet-AzContext -SubscriptionName CPP_STL_GitHub
. (For unknown reasons, I now have access to a bunch of subscriptions, andConnect-AzAccount
selects the first one, which isn'tCPP_STL_GitHub
. ThisSet-AzContext
step allows the following steps to work, and should have no harmful effects if a maintainer has access to onlyCPP_STL_GitHub
.)AdminUser
and$AdminPW
. We don't need these credentials.azure-devops/provision-image.ps1
azure-pipelines.yml
stl/inc/filesystem
stl/inc/memory_resource
stl/inc/tuple
stl/inc/utility
pair
's piecewise constructor with Standard Library Header Units, by defining that constructor in<utility>
instead of<tuple>
. To do so, we need to define an internal_Tuple_get
helper for modifiable rvalues only. This mitigates the throughput impact for<utility>
, and should avoid disrupting conformance tests that are overly sensitive to the order ofget
declarations. As a bonus, we can now definepair
's constructors entirely within the class definition.stl/inc/yvals_core.h
__cpp_impl_coroutine
to its C++20 value, so we don't need the197000L
workaround. (We still need#ifdef __cpp_impl_coroutine
for Clang.)tests/libcxx/expected_results.txt
allocator.members/allocate.pass.cpp
now passes, so mark it asFAIL
for Clang only. (No change toskipped_tests.txt
.)tests/std/tests/P0433R2_deduction_guides/test.cpp
tests/std/tests/P0896R4_ranges_range_machinery/test.cpp
ref_view
so we cantest_borrowed_range
here.tests/std/tests/P0896R4_views_common/test.cpp
tests/std/tests/P0896R4_views_drop_while/test.cpp
tests/std/tests/P0896R4_views_filter/test.cpp
tests/std/tests/P0896R4_views_reverse/test.cpp
tests/std/tests/P0896R4_views_take_while/test.cpp
tests/std/tests/P0896R4_views_transform/test.cpp
tests/std/tests/P1502R1_standard_library_header_units/test.cpp
tests/std/tests/VSO_0157762_feature_test_macros/test.compile.pass.cpp
__cpp_impl_coroutine
197000L
workaround; seeyvals_core.h
above.Note: The
_MSC_VER
check is not changing, as its value will remain1928
for 16.9 (due to running out of one's digits). The difference is detectable through_MSC_FULL_VER
, but this check doesn't need to be strict - it merely diagnoses egregious compiler version mismatch.STL/stl/inc/yvals_core.h
Lines 515 to 516 in 9959929