fix: Remove Unused Include Directives (#4266)

* fix: remove unused includes

* fix: bad includes

* fix: top include

* fix: streamer mode includes

* fix: missing include

* fix: remove `#else`

Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
nerix
2022-12-27 21:26:32 +01:00
committed by GitHub
parent b2a8327696
commit 757c7c781e
6 changed files with 18 additions and 28 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
#include "AttachedWindow.hpp"
#include "widgets/AttachedWindow.hpp"
#include "Application.hpp"
#include "common/QLogging.hpp"
@@ -13,14 +13,14 @@
#include <memory>
#ifdef USEWINSDK
// clang-format off
# include "util/WindowsHelper.hpp"
# include "Windows.h"
// clang-format off
// don't even think about reordering these
# include "Windows.h"
# include "Psapi.h"
# pragma comment(lib, "Dwmapi.lib")
// clang-format on
# pragma comment(lib, "Dwmapi.lib")
#endif
namespace chatterino {