diff options
author | bunnei <bunneidev@gmail.com> | 2019-06-06 10:37:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-06 10:37:28 -0400 |
commit | 03d9bbaa908667bbc51201f0504f4331385dcf9d (patch) | |
tree | 4c172ce3701ea85521a74fd4d7748aa32a99b5c9 /src | |
parent | a20ba09bfde185d8911f9755659ff73d5355e2b7 (diff) | |
parent | 8304aaf28260b3971b511cad915fbdcf8f16fbfb (diff) |
Merge pull request #2551 from lioncash/dtor
service/ns: Add missing override specifiers
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/ns/ns.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/core/hle/service/ns/ns.h b/src/core/hle/service/ns/ns.h index 0f4bab4cb..0e8256cb4 100644 --- a/src/core/hle/service/ns/ns.h +++ b/src/core/hle/service/ns/ns.h @@ -11,13 +11,13 @@ namespace Service::NS { class IAccountProxyInterface final : public ServiceFramework<IAccountProxyInterface> { public: explicit IAccountProxyInterface(); - ~IAccountProxyInterface(); + ~IAccountProxyInterface() override; }; class IApplicationManagerInterface final : public ServiceFramework<IApplicationManagerInterface> { public: explicit IApplicationManagerInterface(); - ~IApplicationManagerInterface(); + ~IApplicationManagerInterface() override; ResultVal<u8> GetApplicationDesiredLanguage(u32 supported_languages); ResultVal<u64> ConvertApplicationLanguageToLanguageCode(u8 application_language); @@ -31,43 +31,43 @@ private: class IApplicationVersionInterface final : public ServiceFramework<IApplicationVersionInterface> { public: explicit IApplicationVersionInterface(); - ~IApplicationVersionInterface(); + ~IApplicationVersionInterface() override; }; class IContentManagerInterface final : public ServiceFramework<IContentManagerInterface> { public: explicit IContentManagerInterface(); - ~IContentManagerInterface(); + ~IContentManagerInterface() override; }; class IDocumentInterface final : public ServiceFramework<IDocumentInterface> { public: explicit IDocumentInterface(); - ~IDocumentInterface(); + ~IDocumentInterface() override; }; class IDownloadTaskInterface final : public ServiceFramework<IDownloadTaskInterface> { public: explicit IDownloadTaskInterface(); - ~IDownloadTaskInterface(); + ~IDownloadTaskInterface() override; }; class IECommerceInterface final : public ServiceFramework<IECommerceInterface> { public: explicit IECommerceInterface(); - ~IECommerceInterface(); + ~IECommerceInterface() override; }; class IFactoryResetInterface final : public ServiceFramework<IFactoryResetInterface> { public: explicit IFactoryResetInterface(); - ~IFactoryResetInterface(); + ~IFactoryResetInterface() override; }; class NS final : public ServiceFramework<NS> { public: explicit NS(const char* name); - ~NS(); + ~NS() override; std::shared_ptr<IApplicationManagerInterface> GetApplicationManagerInterface() const; |