mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-18 04:19:55 +01:00
Fix compilation on release builds
This commit is contained in:
parent
df05bf1195
commit
5a2f522895
@ -20,8 +20,12 @@
|
|||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
#define qLog(level) \
|
#ifdef QT_NO_DEBUG_STREAM
|
||||||
logging::CreateLogger(logging::Level_##level, __PRETTY_FUNCTION__, __LINE__)
|
# define qLog(level) while (false) QNoDebug()
|
||||||
|
#else
|
||||||
|
# define qLog(level) \
|
||||||
|
logging::CreateLogger(logging::Level_##level, __PRETTY_FUNCTION__, __LINE__)
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace logging {
|
namespace logging {
|
||||||
class NullDevice : public QIODevice {
|
class NullDevice : public QIODevice {
|
||||||
|
Loading…
Reference in New Issue
Block a user