summaryrefslogtreecommitdiff
path: root/src/common/wall_clock.cpp
diff options
context:
space:
mode:
authorGravatar LC2020-09-30 05:53:12 -0400
committerGravatar GitHub2020-09-30 05:53:12 -0400
commitcb56eaee41824b1ccf6a3e2508f718fd2bad76c4 (patch)
tree36c3b71a333472425e090251c46ee9fd9d946e28 /src/common/wall_clock.cpp
parentMerge pull request #4735 from goldenx86/patch-1 (diff)
parentcommon/wall_clock: Add virtual destructors (diff)
downloadyuzu-cb56eaee41824b1ccf6a3e2508f718fd2bad76c4.tar.gz
yuzu-cb56eaee41824b1ccf6a3e2508f718fd2bad76c4.tar.xz
yuzu-cb56eaee41824b1ccf6a3e2508f718fd2bad76c4.zip
Merge pull request #4732 from ReinUsesLisp/wall-clock-destr
common/wall_clock: Add virtual destructors
Diffstat (limited to 'src/common/wall_clock.cpp')
-rw-r--r--src/common/wall_clock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/wall_clock.cpp b/src/common/wall_clock.cpp
index 3afbdb898..7a20e95b7 100644
--- a/src/common/wall_clock.cpp
+++ b/src/common/wall_clock.cpp
@@ -15,7 +15,7 @@ namespace Common {
15using base_timer = std::chrono::steady_clock; 15using base_timer = std::chrono::steady_clock;
16using base_time_point = std::chrono::time_point<base_timer>; 16using base_time_point = std::chrono::time_point<base_timer>;
17 17
18class StandardWallClock : public WallClock { 18class StandardWallClock final : public WallClock {
19public: 19public:
20 StandardWallClock(u64 emulated_cpu_frequency, u64 emulated_clock_frequency) 20 StandardWallClock(u64 emulated_cpu_frequency, u64 emulated_clock_frequency)
21 : WallClock(emulated_cpu_frequency, emulated_clock_frequency, false) { 21 : WallClock(emulated_cpu_frequency, emulated_clock_frequency, false) {