Updated to require C++17 and use exceptions.

This commit is contained in:
Teal Dulcet
2024-11-13 09:31:42 -08:00
parent 370dde9025
commit 8fa05e23c8
10 changed files with 182 additions and 273 deletions

View File

@@ -27,7 +27,7 @@ jobs:
$CXX --version
- name: Script
run: |
ARGS=( -std=gnu++14 -Wall -g -Og )
ARGS=( -std=gnu++17 -Wall -g -Og )
if [[ $CXX == clang* ]]; then
ARGS+=( -fsanitize=address,undefined,integer )
else