diff options
author | bunnei <bunneidev@gmail.com> | 2021-11-04 13:56:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-04 13:56:10 -0700 |
commit | f178a8ef0ce1ba602b0c857ed5993880a74d6a69 (patch) | |
tree | e40d64467cd06038d765a0e066a65ff5c2ba8121 /src/core/frontend | |
parent | b92c4abc96008b5898f905856b3acbeba31c3d61 (diff) | |
parent | b275f2e475e4e2eaa34225ed3c3cd247150e1ba0 (diff) |
Merge pull request #7282 from ameerj/core-includes
core: Reduce unused header includes
Diffstat (limited to 'src/core/frontend')
-rw-r--r-- | src/core/frontend/applets/general_frontend.h | 1 | ||||
-rw-r--r-- | src/core/frontend/applets/software_keyboard.h | 1 | ||||
-rw-r--r-- | src/core/frontend/applets/web_browser.h | 1 | ||||
-rw-r--r-- | src/core/frontend/emu_window.cpp | 1 | ||||
-rw-r--r-- | src/core/frontend/emu_window.h | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/src/core/frontend/applets/general_frontend.h b/src/core/frontend/applets/general_frontend.h index b713b14ee..1647aa975 100644 --- a/src/core/frontend/applets/general_frontend.h +++ b/src/core/frontend/applets/general_frontend.h @@ -5,7 +5,6 @@ #pragma once #include <functional> -#include <optional> #include "common/common_types.h" namespace Core::Frontend { diff --git a/src/core/frontend/applets/software_keyboard.h b/src/core/frontend/applets/software_keyboard.h index 228a548d4..29109306b 100644 --- a/src/core/frontend/applets/software_keyboard.h +++ b/src/core/frontend/applets/software_keyboard.h @@ -5,7 +5,6 @@ #pragma once #include <functional> -#include <thread> #include "common/common_types.h" diff --git a/src/core/frontend/applets/web_browser.h b/src/core/frontend/applets/web_browser.h index 915dde677..b6a60c994 100644 --- a/src/core/frontend/applets/web_browser.h +++ b/src/core/frontend/applets/web_browser.h @@ -5,7 +5,6 @@ #pragma once #include <functional> -#include <string_view> #include "core/hle/service/am/applets/applet_web_browser_types.h" diff --git a/src/core/frontend/emu_window.cpp b/src/core/frontend/emu_window.cpp index e11ec0b0b..e1f7e5886 100644 --- a/src/core/frontend/emu_window.cpp +++ b/src/core/frontend/emu_window.cpp @@ -2,7 +2,6 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include <cmath> #include <mutex> #include "common/settings.h" #include "core/frontend/emu_window.h" diff --git a/src/core/frontend/emu_window.h b/src/core/frontend/emu_window.h index 076148698..8a86a1d27 100644 --- a/src/core/frontend/emu_window.h +++ b/src/core/frontend/emu_window.h @@ -5,7 +5,6 @@ #pragma once #include <memory> -#include <tuple> #include <utility> #include "common/common_types.h" #include "core/frontend/framebuffer_layout.h" |