From 01a63fcf5a2efa0d100138a2f21d9541f4f7fc6d Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Tue, 27 Aug 2024 13:41:54 -0500 Subject: [PATCH] misc: Include Log.hpp in main (#87) It is already included because of ConfigManager.hpp, but that should not be relied on as logging is also directly used in the main function. --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index 700c846..c1874ac 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,7 @@ #include "config/ConfigManager.hpp" #include "core/Hypridle.hpp" +#include "helpers/Log.hpp" int main(int argc, char** argv, char** envp) { std::string configPath;