hid: Move core include to cpp file

This isn't required to be in the header. Instead, directly include what
this header needs and move it to the cpp file where it belongs.
merge-requests/60/head
Lioncash 2018-08-23 23:20:33 +07:00
parent 165c23c848
commit ec59e4a6c5
2 changed files with 4 additions and 1 deletions

@ -17,6 +17,7 @@
#include "core/hle/service/hid/irs.h"
#include "core/hle/service/hid/xcd.h"
#include "core/hle/service/service.h"
#include "core/settings.h"
namespace Service::HID {

@ -4,8 +4,10 @@
#pragma once
#include <array>
#include "common/bit_field.h"
#include "common/common_types.h"
#include "core/hle/service/service.h"
#include "core/settings.h"
namespace Service::HID {