diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-02-14 14:45:38 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-02-14 14:45:38 +0100 |
commit | 2cf44607cf0f057e147c2c4fe6dded6c13c58a8a (patch) | |
tree | 2519765f5d075a778e451d75201803354f504908 /lib/events | |
parent | 10ac7c13cdcd62b62af6e89cb726376cfbc53302 (diff) | |
download | libquotient-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.
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/event.h | 1 |
1 files changed, 0 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 { |