summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp
diff options
context:
space:
mode:
authorMartino Fontana <tinozzo123@gmail.com>2026-01-23 21:30:01 +0100
committerMartino Fontana <tinozzo123@gmail.com>2026-01-25 16:12:15 +0100
commita14c88ba67a51b0a563a5fc800cd089e82ffacaf (patch)
tree4263ea748b1b70960a1e28ae89cd26a361be4faf /Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp
parentcdbea8867df3d0a6fc375e78726dae95612fb1fd (diff)
Remove unused imports
Yellow squiggly lines begone! Done automatically on .cpp files through `run-clang-tidy`, with manual corrections to the mistakes. If an import is directly used, but is technically unnecessary since it's recursively imported by something else, it is *not* removed. The tool doesn't touch .h files, so I did some of them by hand while fixing errors due to old recursive imports. Not everything is removed, but the cleanup should be substantial enough. Because this done on Linux, code that isn't used on it is mostly untouched. (Hopefully no open PR is depending on these imports...)
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp
index a91cf8be85..612310a470 100644
--- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Buttons.cpp
@@ -3,12 +3,8 @@
#include "InputCommon/ControllerEmu/ControlGroup/Buttons.h"
-#include <memory>
#include <string>
-#include "Common/Common.h"
-#include "InputCommon/ControllerEmu/Setting/NumericSetting.h"
-
namespace ControllerEmu
{
Buttons::Buttons(const std::string& name_) : Buttons(name_, name_)