Skip to content

Commit a5d937e

Browse files
committed
fixes
1 parent 8df9f3d commit a5d937e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

test/core/run/unique_ptr_wrapper.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ struct CustomFields2 {
3535
};
3636

3737
int 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&) {});

0 commit comments

Comments
 (0)