File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,6 @@ jobs:
260260 rm -rf build_module
261261
262262 - name : Run tests
263- if : ${{matrix.os != 'windows-2025'}} # TODO: workaround issues
264263 shell : cmd
265264 run : |
266265 cd ../boost-root
Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ struct CustomFields2 {
3535};
3636
3737int main () {
38- // Compilers have issues with this test.
38+
39+ // Compilers have issues with this test in C++17.
3940//
4041// GCC-9 and GCC-10 are fine
4142//
@@ -52,6 +53,9 @@ int main() {
5253// | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5354//
5455// GCC-14 is fine
56+ //
57+ // Because of the above issues we test only in C++26.
58+
5559#if BOOST_PFR_USE_CPP26
5660 CustomFields2 cf2;
5761 boost::pfr::for_each_field_with_name (cf2, [](const auto &, const auto &) {});
You can’t perform that action at this time.
0 commit comments