summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/system_clock_core.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-18 03:04:43 +0200
committerGitHub <noreply@github.com>2020-04-18 03:04:43 +0200
commit907ba8794eb40796bd384790f15115c28ef78baf (patch)
treee0669c3688f89310cd35f2337357344ceaf63473 /src/core/hle/service/time/system_clock_core.h
parentMerge pull request #3711 from lioncash/cast (diff)
parenttime/system_clock_core: Remove unnecessary initializer (diff)
downloadyuzu-907ba8794eb40796bd384790f15115c28ef78baf.tar
yuzu-907ba8794eb40796bd384790f15115c28ef78baf.tar.gz
yuzu-907ba8794eb40796bd384790f15115c28ef78baf.tar.bz2
yuzu-907ba8794eb40796bd384790f15115c28ef78baf.tar.lz
yuzu-907ba8794eb40796bd384790f15115c28ef78baf.tar.xz
yuzu-907ba8794eb40796bd384790f15115c28ef78baf.tar.zst
yuzu-907ba8794eb40796bd384790f15115c28ef78baf.zip
Diffstat (limited to 'src/core/hle/service/time/system_clock_core.h')
-rw-r--r--src/core/hle/service/time/system_clock_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/time/system_clock_core.h b/src/core/hle/service/time/system_clock_core.h
index 54407a6c5..608dd3b2e 100644
--- a/src/core/hle/service/time/system_clock_core.h
+++ b/src/core/hle/service/time/system_clock_core.h
@@ -22,7 +22,7 @@ class SystemClockContextUpdateCallback;
class SystemClockCore {
public:
explicit SystemClockCore(SteadyClockCore& steady_clock_core);
- ~SystemClockCore();
+ virtual ~SystemClockCore();
SteadyClockCore& GetSteadyClockCore() const {
return steady_clock_core;