diff options
| author | 2020-09-30 05:53:12 -0400 | |
|---|---|---|
| committer | 2020-09-30 05:53:12 -0400 | |
| commit | cb56eaee41824b1ccf6a3e2508f718fd2bad76c4 (patch) | |
| tree | 36c3b71a333472425e090251c46ee9fd9d946e28 /src/common/wall_clock.cpp | |
| parent | Merge pull request #4735 from goldenx86/patch-1 (diff) | |
| parent | common/wall_clock: Add virtual destructors (diff) | |
| download | yuzu-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.cpp | 2 |
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 { | |||
| 15 | using base_timer = std::chrono::steady_clock; | 15 | using base_timer = std::chrono::steady_clock; |
| 16 | using base_time_point = std::chrono::time_point<base_timer>; | 16 | using base_time_point = std::chrono::time_point<base_timer>; |
| 17 | 17 | ||
| 18 | class StandardWallClock : public WallClock { | 18 | class StandardWallClock final : public WallClock { |
| 19 | public: | 19 | public: |
| 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) { |