From 89185ea9c92a5ee81d897e36e063cda8287f58b1 Mon Sep 17 00:00:00 2001 From: Kevin Buffardi Date: Thu, 16 Feb 2023 21:53:36 -0800 Subject: [PATCH 1/2] Fix residual SIDES -> FACES refactoring error --- GameDie.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GameDie.cpp b/GameDie.cpp index d13d74b..d512405 100644 --- a/GameDie.cpp +++ b/GameDie.cpp @@ -18,12 +18,12 @@ GameDie::GameDie(unsigned int num) { if( num == 0 ) { - counter.resize(SIDES); + counter.resize(FACES); } else{ counter.resize(num); } - for(int i=0; i Date: Mon, 20 Feb 2023 11:28:25 -0800 Subject: [PATCH 2/2] Updated README adn resolved 1 --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a8fe2c..1bf3cd3 100644 --- a/README.md +++ b/README.md @@ -23,4 +23,6 @@ Once built, run the image: ...or run it with a bind mount to the current source code: -`docker run --mount type=bind,source="$(pwd)",target=/usr/src -it cpp-container` \ No newline at end of file +`docker run --mount type=bind,source="$(pwd)",target=/usr/src -it cpp-container` + +.githuub/workflows/main.yml