Updated to support and use modern C++ features and added more examples.

This commit is contained in:
Teal Dulcet
2022-07-14 01:33:38 -07:00
parent 37e257c5ee
commit 274f949079
11 changed files with 1123 additions and 380 deletions

View File

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