tictactoe

Tic Tac Toe on the terminal using ANSI Escape Codes
Index Commits Files Refs README LICENSE
commit 487634a328fd59bd1fce2ed34c0bbbebdec002b1
parent 1e5c90a0c7a1f8bf73a1b5d8e488b237282aa89f
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Mon,  1 Apr 2024 00:59:45 -0300

Remove unused variable

Diffstat:
Mtictactoe.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tictactoe.cpp b/tictactoe.cpp
@@ -167,7 +167,7 @@ void game_initialize_board() {
 
 void game_check_status() {
     char aux;
-    size_t i, j, occ_x, occ_o, occurrences;
+    size_t i, j, occ_x, occ_o;
     if(game_status != PLAYING)
         return;