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/x64 | |
| 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/x64')
| -rw-r--r-- | src/common/x64/native_clock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/x64/native_clock.h b/src/common/x64/native_clock.h index 891a3bbfd..7c503df26 100644 --- a/src/common/x64/native_clock.h +++ b/src/common/x64/native_clock.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | namespace Common { | 12 | namespace Common { |
| 13 | 13 | ||
| 14 | namespace X64 { | 14 | namespace X64 { |
| 15 | class NativeClock : public WallClock { | 15 | class NativeClock final : public WallClock { |
| 16 | public: | 16 | public: |
| 17 | NativeClock(u64 emulated_cpu_frequency, u64 emulated_clock_frequency, u64 rtsc_frequency); | 17 | NativeClock(u64 emulated_cpu_frequency, u64 emulated_clock_frequency, u64 rtsc_frequency); |
| 18 | 18 | ||