Removed LogLevel being enum class

This commit is contained in:
2026-03-16 09:30:29 +02:00
parent 9a684ae93d
commit b8c21ebbde
4 changed files with 19 additions and 21 deletions

View File

@@ -36,8 +36,8 @@ public:
private:
static std::fstream File;
static const char *LogLevelToColour[LogLevel::Trace + 1];
static const char *LogLevelToString[LogLevel::Trace + 1];
static const char *LogLevelToColour[Trace + 1];
static const char *LogLevelToString[Trace + 1];
};
} // namespace Tourmaline::Systems
#endif