Skip to content

Commit

Permalink
Update ci.yml (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin authored Aug 14, 2024
1 parent 449bf36 commit dec9341
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
fail-fast: false
matrix:
include:
- toolset: gcc-13
- toolset: gcc-14
cxxstd: "03,11,14,17,20"
os: ubuntu-22.04
os: ubuntu-24.04
- toolset: gcc-12 # Do not remove! It is the only toolset that tests misc/strip_boost_namespace.sh
cxxstd: "03,11,14,17,2a"
os: ubuntu-22.04
Expand Down
2 changes: 1 addition & 1 deletion test/core/run/non_movable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ int main() {
#if BOOST_PFR_HAS_GUARANTEED_COPY_ELISION

// MSVC-14.3 fails this test
#if !defined(_MSC_VER) || _MSC_VER < 1930 || _MSC_VER > 1939
#if !defined(_MSC_VER) || _MSC_VER < 1930 || _MSC_VER > 1949
static_assert(boost::pfr::tuple_size_v<S> == 4, "");

struct S5_0 { int x0; int x1; int x2; int x3; X x4; };
Expand Down

0 comments on commit dec9341

Please sign in to comment.