aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-04-05 23:39:52 -0400
committerGitHub <noreply@github.com>2019-04-05 23:39:52 -0400
commite86b26cd2b263f3d5d97352f87a31dc65bd3cead (patch)
treed4b57743c0b88165e796a126bfd21e9d6090a67a /src/core/hle/service/service.h
parent41890a84bed7c04c2746db5bf4d66ea07291ec5c (diff)
parent5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c (diff)
Merge pull request #2334 from lioncash/override
core: Add missing override specifiers where applicable
Diffstat (limited to 'src/core/hle/service/service.h')
-rw-r--r--src/core/hle/service/service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index 830790269..abbfe5524 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -90,7 +90,7 @@ private:
Kernel::HLERequestContext& ctx);
ServiceFrameworkBase(const char* service_name, u32 max_sessions, InvokerFn* handler_invoker);
- ~ServiceFrameworkBase();
+ ~ServiceFrameworkBase() override;
void RegisterHandlersBase(const FunctionInfoBase* functions, std::size_t n);
void ReportUnimplementedFunction(Kernel::HLERequestContext& ctx, const FunctionInfoBase* info);