Restore support for C++14 (#1)

This commit is contained in:
t-bltg
2023-03-10 11:07:00 +01:00
committed by GitHub
parent 4c4a70ad6d
commit 1d6c53c985
7 changed files with 71 additions and 59 deletions

View File

@@ -27,9 +27,9 @@ jobs:
$CXX --version
- name: Script
run: |
$CXX -std=c++17 -Wall -g -Og -fsanitize=address,undefined tables.cpp -o tables
$CXX -std=c++14 -Wall -g -Og -fsanitize=address,undefined tables.cpp -o tables
./tables
$CXX -std=c++17 -Wall -g -Og -fsanitize=address,undefined graphs.cpp -o graphs
$CXX -std=c++14 -Wall -g -Og -fsanitize=address,undefined graphs.cpp -o graphs
./graphs
- name: Cppcheck
run: cppcheck --enable=all .