diff options
| author | 2022-02-02 12:12:22 -0500 | |
|---|---|---|
| committer | 2022-02-02 12:17:08 -0500 | |
| commit | 76d83ffbece12d9509c5cc753dd6c69d8abeb458 (patch) | |
| tree | d514d72b25ccea9a7405bd36e8caf7a79da4d909 /src/core/hid/emulated_controller.h | |
| parent | Merge pull request #7807 from german77/moar-buttons (diff) | |
| download | yuzu-76d83ffbece12d9509c5cc753dd6c69d8abeb458.tar.gz yuzu-76d83ffbece12d9509c5cc753dd6c69d8abeb458.tar.xz yuzu-76d83ffbece12d9509c5cc753dd6c69d8abeb458.zip | |
general: Move deleted copy/move constructor/assignment operators to public interface
This allows for better compiler errors, where the compiler will state a
copy or move couldn't occur due to the relevant function being deleted.
Previously a compiler would warn about the relevant function not being
accessible (which, while true, isn't as informative as it could be).
Diffstat (limited to 'src/core/hid/emulated_controller.h')
| -rw-r--r-- | src/core/hid/emulated_controller.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hid/emulated_controller.h b/src/core/hid/emulated_controller.h index a63a83cce..d8642c5b3 100644 --- a/src/core/hid/emulated_controller.h +++ b/src/core/hid/emulated_controller.h | |||
| @@ -13,8 +13,6 @@ | |||
| 13 | #include "common/common_types.h" | 13 | #include "common/common_types.h" |
| 14 | #include "common/input.h" | 14 | #include "common/input.h" |
| 15 | #include "common/param_package.h" | 15 | #include "common/param_package.h" |
| 16 | #include "common/point.h" | ||
| 17 | #include "common/quaternion.h" | ||
| 18 | #include "common/settings.h" | 16 | #include "common/settings.h" |
| 19 | #include "common/vector_math.h" | 17 | #include "common/vector_math.h" |
| 20 | #include "core/hid/hid_types.h" | 18 | #include "core/hid/hid_types.h" |