Skip to content

Commit

Permalink
fix CI compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackMATov committed Jun 17, 2024
1 parent 19247dd commit 56c2a78
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- { os: "macos-12", xcode: "13.4.1", arch: "x64" }
- { os: "macos-13", xcode: "14.3.1", arch: "x64" }
- { os: "macos-13", xcode: "14.3.1", arch: "arm64" }
- { os: "macos-14", xcode: "15.2", arch: "x64" }
- { os: "macos-14", xcode: "15.2", arch: "arm64" }
- { os: "macos-14", xcode: "15.4", arch: "x64" }
- { os: "macos-14", xcode: "15.4", arch: "arm64" }
name: "xcode-${{matrix.config.xcode}}-${{matrix.config.arch}}"
steps:
- name: Setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
# https://github.com/actions/runner-images/tree/main/images/ubuntu
- { os: "ubuntu-20.04", cc: "gcc-10", cxx: "g++-10" }
- { os: "ubuntu-20.04", cc: "clang-10", cxx: "clang++-10" }
- { os: "ubuntu-22.04", cc: "gcc-13", cxx: "g++-13" }
- { os: "ubuntu-22.04", cc: "clang-15", cxx: "clang++-15" }
- { os: "ubuntu-24.04", cc: "gcc-14", cxx: "g++-14" }
- { os: "ubuntu-24.04", cc: "clang-18", cxx: "clang++-18" }
name: "${{matrix.config.cxx}}"
steps:
- name: Setup
Expand Down
2 changes: 1 addition & 1 deletion develop/untests/meta_issues/github_discussion_88.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace
};

struct position_component : component {
META_HPP_ENABLE_POLY_INFO()
META_HPP_ENABLE_POLY_INFO(component)
public:
explicit position_component(int nx, int ny) : x{nx}, y{ny} {}

Expand Down

0 comments on commit 56c2a78

Please sign in to comment.