diff options
| author | 2019-06-06 10:37:28 -0400 | |
|---|---|---|
| committer | 2019-06-06 10:37:28 -0400 | |
| commit | 03d9bbaa908667bbc51201f0504f4331385dcf9d (patch) | |
| tree | 4c172ce3701ea85521a74fd4d7748aa32a99b5c9 /src | |
| parent | Merge pull request #2520 from ReinUsesLisp/vulkan-refresh (diff) | |
| parent | service/ns: Add missing override specifiers (diff) | |
| download | yuzu-03d9bbaa908667bbc51201f0504f4331385dcf9d.tar.gz yuzu-03d9bbaa908667bbc51201f0504f4331385dcf9d.tar.xz yuzu-03d9bbaa908667bbc51201f0504f4331385dcf9d.zip | |
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 { | |||
| 11 | class IAccountProxyInterface final : public ServiceFramework<IAccountProxyInterface> { | 11 | class IAccountProxyInterface final : public ServiceFramework<IAccountProxyInterface> { |
| 12 | public: | 12 | public: |
| 13 | explicit IAccountProxyInterface(); | 13 | explicit IAccountProxyInterface(); |
| 14 | ~IAccountProxyInterface(); | 14 | ~IAccountProxyInterface() override; |
| 15 | }; | 15 | }; |
| 16 | 16 | ||
| 17 | class IApplicationManagerInterface final : public ServiceFramework<IApplicationManagerInterface> { | 17 | class IApplicationManagerInterface final : public ServiceFramework<IApplicationManagerInterface> { |
| 18 | public: | 18 | public: |
| 19 | explicit IApplicationManagerInterface(); | 19 | explicit IApplicationManagerInterface(); |
| 20 | ~IApplicationManagerInterface(); | 20 | ~IApplicationManagerInterface() override; |
| 21 | 21 | ||
| 22 | ResultVal<u8> GetApplicationDesiredLanguage(u32 supported_languages); | 22 | ResultVal<u8> GetApplicationDesiredLanguage(u32 supported_languages); |
| 23 | ResultVal<u64> ConvertApplicationLanguageToLanguageCode(u8 application_language); | 23 | ResultVal<u64> ConvertApplicationLanguageToLanguageCode(u8 application_language); |
| @@ -31,43 +31,43 @@ private: | |||
| 31 | class IApplicationVersionInterface final : public ServiceFramework<IApplicationVersionInterface> { | 31 | class IApplicationVersionInterface final : public ServiceFramework<IApplicationVersionInterface> { |
| 32 | public: | 32 | public: |
| 33 | explicit IApplicationVersionInterface(); | 33 | explicit IApplicationVersionInterface(); |
| 34 | ~IApplicationVersionInterface(); | 34 | ~IApplicationVersionInterface() override; |
| 35 | }; | 35 | }; |
| 36 | 36 | ||
| 37 | class IContentManagerInterface final : public ServiceFramework<IContentManagerInterface> { | 37 | class IContentManagerInterface final : public ServiceFramework<IContentManagerInterface> { |
| 38 | public: | 38 | public: |
| 39 | explicit IContentManagerInterface(); | 39 | explicit IContentManagerInterface(); |
| 40 | ~IContentManagerInterface(); | 40 | ~IContentManagerInterface() override; |
| 41 | }; | 41 | }; |
| 42 | 42 | ||
| 43 | class IDocumentInterface final : public ServiceFramework<IDocumentInterface> { | 43 | class IDocumentInterface final : public ServiceFramework<IDocumentInterface> { |
| 44 | public: | 44 | public: |
| 45 | explicit IDocumentInterface(); | 45 | explicit IDocumentInterface(); |
| 46 | ~IDocumentInterface(); | 46 | ~IDocumentInterface() override; |
| 47 | }; | 47 | }; |
| 48 | 48 | ||
| 49 | class IDownloadTaskInterface final : public ServiceFramework<IDownloadTaskInterface> { | 49 | class IDownloadTaskInterface final : public ServiceFramework<IDownloadTaskInterface> { |
| 50 | public: | 50 | public: |
| 51 | explicit IDownloadTaskInterface(); | 51 | explicit IDownloadTaskInterface(); |
| 52 | ~IDownloadTaskInterface(); | 52 | ~IDownloadTaskInterface() override; |
| 53 | }; | 53 | }; |
| 54 | 54 | ||
| 55 | class IECommerceInterface final : public ServiceFramework<IECommerceInterface> { | 55 | class IECommerceInterface final : public ServiceFramework<IECommerceInterface> { |
| 56 | public: | 56 | public: |
| 57 | explicit IECommerceInterface(); | 57 | explicit IECommerceInterface(); |
| 58 | ~IECommerceInterface(); | 58 | ~IECommerceInterface() override; |
| 59 | }; | 59 | }; |
| 60 | 60 | ||
| 61 | class IFactoryResetInterface final : public ServiceFramework<IFactoryResetInterface> { | 61 | class IFactoryResetInterface final : public ServiceFramework<IFactoryResetInterface> { |
| 62 | public: | 62 | public: |
| 63 | explicit IFactoryResetInterface(); | 63 | explicit IFactoryResetInterface(); |
| 64 | ~IFactoryResetInterface(); | 64 | ~IFactoryResetInterface() override; |
| 65 | }; | 65 | }; |
| 66 | 66 | ||
| 67 | class NS final : public ServiceFramework<NS> { | 67 | class NS final : public ServiceFramework<NS> { |
| 68 | public: | 68 | public: |
| 69 | explicit NS(const char* name); | 69 | explicit NS(const char* name); |
| 70 | ~NS(); | 70 | ~NS() override; |
| 71 | 71 | ||
| 72 | std::shared_ptr<IApplicationManagerInterface> GetApplicationManagerInterface() const; | 72 | std::shared_ptr<IApplicationManagerInterface> GetApplicationManagerInterface() const; |
| 73 | 73 | ||