mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Make chatterino::lua::api::LogLevel an enum class
This commit is contained in:
parent
2629c56d5c
commit
805e8578ba
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ int g_import(lua_State *L);
|
||||||
|
|
||||||
// Exposed as c2.LogLevel
|
// Exposed as c2.LogLevel
|
||||||
// Represents "calls" to qCDebug, qCInfo ...
|
// Represents "calls" to qCDebug, qCInfo ...
|
||||||
enum LogLevel { Debug, Info, Warning, Critical };
|
enum class LogLevel { Debug, Info, Warning, Critical };
|
||||||
|
|
||||||
} // namespace chatterino::lua::api
|
} // namespace chatterino::lua::api
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue