From 776ee61c051ba6fcd6a822b45d649380a95e02e8 Mon Sep 17 00:00:00 2001 From: VolcaEM <63682805+VolcaEM@users.noreply.github.com> Date: Mon, 22 Jun 2020 21:32:06 +0200 Subject: [PATCH] Add missing "public" --- src/core/hle/service/acc/acc.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index 59eeb19cb8..1886eee6c5 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp @@ -222,7 +222,7 @@ public: }; class IOAuthProcedureForNintendoAccountLinkage final - : ServiceFramework { + : public ServiceFramework { public: explicit IOAuthProcedureForNintendoAccountLinkage(Common::UUID user_id) : ServiceFramework("IOAuthProcedureForNintendoAccountLinkage") { @@ -243,7 +243,7 @@ public: } }; -class INotifier final : ServiceFramework { +class INotifier final : public ServiceFramework { public: explicit INotifier(Common::UUID user_id) : ServiceFramework("INotifier") { // clang-format off @@ -438,7 +438,7 @@ public: : IProfileCommon("IProfileEditor", true, user_id, profile_manager) {} }; -class IAsyncContext final : ServiceFramework { +class IAsyncContext final : public ServiceFramework { public: explicit IAsyncContext(Common::UUID user_id) : ServiceFramework("IAsyncContext") { // clang-format off @@ -467,7 +467,7 @@ public: } }; -class IGuestLoginRequest final : ServiceFramework { +class IGuestLoginRequest final : public ServiceFramework { public: explicit IGuestLoginRequest(Common::UUID) : ServiceFramework("IGuestLoginRequest") { // clang-format off @@ -527,7 +527,7 @@ private: // 6.0.0+ class IAsyncNetworkServiceLicenseKindContext final - : ServiceFramework { + : public ServiceFramework { public: explicit IAsyncNetworkServiceLicenseKindContext(Common::UUID user_id) : ServiceFramework("IAsyncNetworkServiceLicenseKindContext") { @@ -547,7 +547,7 @@ public: // 8.0.0+ class IOAuthProcedureForUserRegistration final - : ServiceFramework { + : public ServiceFramework { public: explicit IOAuthProcedureForUserRegistration(Common::UUID user_id) : ServiceFramework("IOAuthProcedureForUserRegistration") { @@ -571,7 +571,7 @@ public: } }; -class DAUTH_O final : ServiceFramework { +class DAUTH_O final : public ServiceFramework { public: explicit DAUTH_O(Common::UUID) : ServiceFramework("dauth:o") { // clang-format off @@ -590,7 +590,7 @@ public: }; // 6.0.0+ -class IAsyncResult : ServiceFramework { +class IAsyncResult : public ServiceFramework { public: explicit IAsyncResult(Common::UUID user_id) : ServiceFramework("IAsyncResult") { // clang-format off