diff options
| author | bunnei <bunneidev@gmail.com> | 2019-04-05 23:39:52 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-05 23:39:52 -0400 |
| commit | e86b26cd2b263f3d5d97352f87a31dc65bd3cead (patch) | |
| tree | d4b57743c0b88165e796a126bfd21e9d6090a67a /src/core/hle/service/nvdrv/interface.h | |
| parent | 41890a84bed7c04c2746db5bf4d66ea07291ec5c (diff) | |
| parent | 5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c (diff) | |
Merge pull request #2334 from lioncash/override
core: Add missing override specifiers where applicable
Diffstat (limited to 'src/core/hle/service/nvdrv/interface.h')
| -rw-r--r-- | src/core/hle/service/nvdrv/interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/interface.h b/src/core/hle/service/nvdrv/interface.h index fe311b069..5b4889910 100644 --- a/src/core/hle/service/nvdrv/interface.h +++ b/src/core/hle/service/nvdrv/interface.h @@ -17,7 +17,7 @@ namespace Service::Nvidia { class NVDRV final : public ServiceFramework<NVDRV> { public: NVDRV(std::shared_ptr<Module> nvdrv, const char* name); - ~NVDRV(); + ~NVDRV() override; private: void Open(Kernel::HLERequestContext& ctx); |
