Skip to content

Commit 1ad32d3

Browse files
committed
chore: Bump OSX compiler version
Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent c427a1d commit 1ad32d3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
include:
21-
- os: "macos-13"
21+
# - os: "macos-13"
2222
- os: "macos-14"
2323
fail-fast: false
2424

@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up C++20
2828
uses: aminya/setup-cpp@v1
2929
with:
30-
compiler: gcc-13
30+
compiler: gcc
3131
cmake: true
3232
ninja: true
3333

src/util.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ namespace cmcpp
2424
return ValType::Variant;
2525
case ValType::Result:
2626
return ValType::Variant;
27+
default:
28+
return t;
2729
}
28-
return t;
2930
}
3031

3132
bool convert_int_to_bool(uint8_t i)

0 commit comments

Comments
 (0)