Skip to content

Commit

Permalink
Work around compiler changes
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Paine <[email protected]>
  • Loading branch information
timkpaine committed Sep 1, 2024
1 parent b379890 commit 2fcda7a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# github.event.head_commit.message otherwise on pull
# requests)
initialize:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

outputs:
COMMIT_MESSAGE: ${{ steps.setup.outputs.COMMIT_MSG }}
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
python-version:
- 3.9

Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04 # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
- ubuntu-24.04 # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
- macos-12 # https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
- macos-14 # https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
- windows-2019 # https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
python-version:
- 3.9

Expand Down Expand Up @@ -438,7 +438,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
- macos-12
- macos-14
- windows-2019
Expand Down Expand Up @@ -592,7 +592,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
python-version:
- 3.9

Expand Down Expand Up @@ -765,7 +765,7 @@ jobs:
- test_dependencies

if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Download wheels and sdist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
- macos-14
- macos-12
- windows-2019
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wiki-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
python-version:
- 3.9

Expand Down
4 changes: 2 additions & 2 deletions cpp/csp/core/Enum.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ struct Enum : public EnumTraits
iterator( int v ) : m_v( v ) {}

Enum operator*() { return Enum( ( EnumV ) m_v ); }
bool operator==(const iterator &rhs) { return m_v == rhs.m_v; }
bool operator!=(const iterator &rhs) { return !(*this == rhs); }
bool operator==(const iterator &rhs) const { return m_v == rhs.m_v; }
bool operator!=(const iterator &rhs) const { return !(*this == rhs); }

iterator &operator++() {
++m_v;
Expand Down

0 comments on commit 2fcda7a

Please sign in to comment.