From f4d30f1aa2d9cc5bc73722e96f0fce6a4e6b947a Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sun, 5 Feb 2023 18:15:33 +0100 Subject: [PATCH] removed unused const modificator from enum declarations --- include/flags.h | 2 +- include/logger/flags.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/flags.h b/include/flags.h index 28d0850..0afdaef 100644 --- a/include/flags.h +++ b/include/flags.h @@ -20,7 +20,7 @@ along with this program. If not, see . #define WHY2_FLAGS_H //CONSTS -const enum WHY2_EXIT_CODES //exit codes you fucking idiot +enum WHY2_EXIT_CODES //exit codes you fucking idiot { WHY2_SUCCESS = 0, //EXIT CODE FOR WHY2_SUCCESSFUL RUN WHY2_INVALID_KEY = 1, //EXIT VALUE FOR INVALID KEY diff --git a/include/logger/flags.h b/include/logger/flags.h index c90d3c1..8920255 100644 --- a/include/logger/flags.h +++ b/include/logger/flags.h @@ -20,7 +20,7 @@ along with this program. If not, see . #define WHY2_LOGGER_FLAGS_H //CONSTS -const enum WHY2_LOGGER_EXIT_CODES //exit codes you fucking idiot (2#) +enum WHY2_LOGGER_EXIT_CODES //exit codes you fucking idiot (2#) { INVALID_FILE = -1 //THIS WILL HAPPEN IF YOU USE TOO MUCH LOGS lol };