From 4e8dc071b0977bbba77f96629dd2f80a183936fc Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Mon, 26 Aug 2024 19:41:44 -0500 Subject: [PATCH] nit: Include Log.hpp in main 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;