From e3c0211b7418a78f43722376305593472c27e574 Mon Sep 17 00:00:00 2001 From: Hamish Milne Date: Mon, 30 Dec 2019 16:15:41 +0000 Subject: [PATCH] Fix clang format --- src/core/hle/service/hid/hid_spvr.h | 1 + src/core/hle/service/hid/hid_user.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/core/hle/service/hid/hid_spvr.h b/src/core/hle/service/hid/hid_spvr.h index a49101dc3..749bd36b8 100644 --- a/src/core/hle/service/hid/hid_spvr.h +++ b/src/core/hle/service/hid/hid_spvr.h @@ -11,6 +11,7 @@ namespace Service::HID { class Spvr final : public Module::Interface { public: explicit Spvr(std::shared_ptr hid); + private: SERVICE_SERIALIZATION(Spvr, hid, Module) }; diff --git a/src/core/hle/service/hid/hid_user.h b/src/core/hle/service/hid/hid_user.h index 6fd9803c6..8a6763ea6 100644 --- a/src/core/hle/service/hid/hid_user.h +++ b/src/core/hle/service/hid/hid_user.h @@ -14,6 +14,7 @@ namespace Service::HID { class User final : public Module::Interface { public: explicit User(std::shared_ptr hid); + private: SERVICE_SERIALIZATION(User, hid, Module) };