commit c000e02c9bec680870738140537f6fc4b23fe60f parent 487634a328fd59bd1fce2ed34c0bbbebdec002b1 Author: Martin Kloeckner <mjkloeckner@gmail.com> Date: Mon, 1 Apr 2024 00:59:56 -0300 Remove unnecessary comma at end of enumerator list Diffstat:
| M | tictactoe.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tictactoe.cpp b/tictactoe.cpp @@ -6,7 +6,7 @@ typedef enum { PLAYER_1, - PLAYER_2, + PLAYER_2 } player_t; typedef enum {
