aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-02-14 14:45:38 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-02-14 14:45:38 +0100
commit2cf44607cf0f057e147c2c4fe6dded6c13c58a8a (patch)
tree2519765f5d075a778e451d75201803354f504908
parent10ac7c13cdcd62b62af6e89cb726376cfbc53302 (diff)
downloadlibquotient-2cf44607cf0f057e147c2c4fe6dded6c13c58a8a.tar.gz
libquotient-2cf44607cf0f057e147c2c4fe6dded6c13c58a8a.zip
Don't #include "logging.h" from headers
Logging categories used by Quotient are not supposed to be exposed externally, which basically forbids usage of logging in header files. A more flexible solution would involve moving logging.h to private headers but Quotient doesn't have that thing yet.
-rw-r--r--lib/events/event.h1
-rw-r--r--lib/syncdata.cpp2
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/events/event.h b/lib/events/event.h
index 113fa3fa..b6f36306 100644
--- a/lib/events/event.h
+++ b/lib/events/event.h
@@ -4,7 +4,6 @@
#pragma once
#include "converters.h"
-#include "logging.h"
#include "function_traits.h"
namespace Quotient {
diff --git a/lib/syncdata.cpp b/lib/syncdata.cpp
index b0cd8e4d..b896d710 100644
--- a/lib/syncdata.cpp
+++ b/lib/syncdata.cpp
@@ -3,6 +3,8 @@
#include "syncdata.h"
+#include "logging.h"
+
#include "events/eventloader.h"
#include <QtCore/QFile>