dolphin/Source/Core/Common/Logging
Léo Lam 7855e5f73b
Turn MAX_LOGLEVEL into a true constant (and fix self-comparison warning)
This replaces the MAX_LOGLEVEL define with a constexpr variable
in order to fix self-comparison warnings in the logging macros
when compiling with Clang. (Without this change, the log level check
in the logging macros is expanded into something like this:
`if (LINFO <= LINFO)`, which triggers a tautological compare warning.)
2021-10-15 21:51:01 +02:00
..
ConsoleListener.h Fix all uninitialized variable warnings (C26495) 2021-10-13 12:32:16 -07:00
ConsoleListenerDroid.cpp
ConsoleListenerNix.cpp
ConsoleListenerWin.cpp
Log.h Turn MAX_LOGLEVEL into a true constant (and fix self-comparison warning) 2021-10-15 21:51:01 +02:00
LogManager.cpp
LogManager.h