Skip to content

Commit

Permalink
Update P1208R6_source_location after MSVC-internal changes (#4220)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanTLavavej authored Nov 29, 2023
1 parent 96c1e08 commit 9f9ab88
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/std/tests/P1208R6_source_location/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,11 @@ constexpr void lambda_test() {
assert(x1.column() == 53);
assert(x2.column() == 58);
#else // ^^^ EDG / C1XX vvv
#ifdef _MSVC_INTERNAL_TESTING // TRANSITION, VS 2022 17.10 Preview 1
assert(x1.column() == 45);
#else // ^^^ no workaround / workaround vvv
assert(x1.column() == 52);
#endif // ^^^ workaround ^^^
assert(x2.column() == 50);
#endif // ^^^ C1XX ^^^
#if _USE_DETAILED_FUNCTION_NAME_IN_SOURCE_LOCATION
Expand Down

0 comments on commit 9f9ab88

Please sign in to comment.