Skip to content
Merged
Changes from all commits
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
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