diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-10-05 01:28:52 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-10-05 01:41:22 +0200 |
commit | 5c907f85fc5fec44a535efa39521a61501554f79 (patch) | |
tree | 543ac207ef0aab24a058e3ebd92f34524d48014b | |
parent | service/hid: Silence -Wunused and -Wswitch (diff) | |
download | yuzu-5c907f85fc5fec44a535efa39521a61501554f79.tar yuzu-5c907f85fc5fec44a535efa39521a61501554f79.tar.gz yuzu-5c907f85fc5fec44a535efa39521a61501554f79.tar.bz2 yuzu-5c907f85fc5fec44a535efa39521a61501554f79.tar.lz yuzu-5c907f85fc5fec44a535efa39521a61501554f79.tar.xz yuzu-5c907f85fc5fec44a535efa39521a61501554f79.tar.zst yuzu-5c907f85fc5fec44a535efa39521a61501554f79.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/nfp/nfp.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp index a42c22d44..aa886cd3e 100644 --- a/src/core/hle/service/nfp/nfp.cpp +++ b/src/core/hle/service/nfp/nfp.cpp @@ -18,8 +18,8 @@ namespace Service::NFP { namespace ErrCodes { -constexpr ResultCode ERR_TAG_FAILED(ErrorModule::NFP, - -1); // TODO(ogniK): Find the actual error code +[[maybe_unused]] constexpr ResultCode ERR_TAG_FAILED(ErrorModule::NFP, + -1); // TODO(ogniK): Find the actual error code constexpr ResultCode ERR_NO_APPLICATION_AREA(ErrorModule::NFP, 152); } // namespace ErrCodes @@ -35,7 +35,7 @@ Module::Interface::~Interface() = default; class IUser final : public ServiceFramework<IUser> { public: IUser(Module::Interface& nfp_interface, Core::System& system) - : ServiceFramework("NFP::IUser"), nfp_interface(nfp_interface), system(system) { + : ServiceFramework("NFP::IUser"), nfp_interface(nfp_interface) { static const FunctionInfo functions[] = { {0, &IUser::Initialize, "Initialize"}, {1, &IUser::Finalize, "Finalize"}, @@ -183,6 +183,8 @@ private: case DeviceState::TagRemoved: device_state = DeviceState::Initialized; break; + default: + break; } IPC::ResponseBuilder rb{ctx, 2}; rb.Push(RESULT_SUCCESS); @@ -324,7 +326,6 @@ private: Kernel::EventPair deactivate_event; Kernel::EventPair availability_change_event; const Module::Interface& nfp_interface; - Core::System& system; }; void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) { |