From 54e1c2ccbdfa6dfade63221b5df02bf8578d96a6 Mon Sep 17 00:00:00 2001 From: memchr <118117622+memchr@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:39:12 +0000 Subject: [PATCH] fix(build): do not include wlr headers directly, use includes.hpp instead. (#3587) --- src/debug/Log.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debug/Log.hpp b/src/debug/Log.hpp index 125ed7f4..085465c9 100644 --- a/src/debug/Log.hpp +++ b/src/debug/Log.hpp @@ -1,10 +1,10 @@ #pragma once #include -#include #include #include #include #include +#include "../includes.hpp" #include "../helpers/MiscFunctions.hpp" #define LOGMESSAGESIZE 1024 @@ -79,4 +79,4 @@ namespace Debug { } void wlrLog(wlr_log_importance level, const char* fmt, va_list args); -}; \ No newline at end of file +};