diff options
| author | 2020-02-10 13:33:13 -0400 | |
|---|---|---|
| committer | 2020-06-18 16:29:19 -0400 | |
| commit | 1bd706344e2381e11245b2f0bdc291429e46c634 (patch) | |
| tree | 4abae5a2088df1eb023967d83c0b808eceb30cea /src/common/wall_clock.h | |
| parent | Common: Correct fcontext fibers. (diff) | |
| download | yuzu-1bd706344e2381e11245b2f0bdc291429e46c634.tar.gz yuzu-1bd706344e2381e11245b2f0bdc291429e46c634.tar.xz yuzu-1bd706344e2381e11245b2f0bdc291429e46c634.zip | |
Common/Tests: Clang Format.
Diffstat (limited to 'src/common/wall_clock.h')
| -rw-r--r-- | src/common/wall_clock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/wall_clock.h b/src/common/wall_clock.h index fc34429bb..ed284cf50 100644 --- a/src/common/wall_clock.h +++ b/src/common/wall_clock.h | |||
| @@ -13,7 +13,6 @@ namespace Common { | |||
| 13 | 13 | ||
| 14 | class WallClock { | 14 | class WallClock { |
| 15 | public: | 15 | public: |
| 16 | |||
| 17 | /// Returns current wall time in nanoseconds | 16 | /// Returns current wall time in nanoseconds |
| 18 | virtual std::chrono::nanoseconds GetTimeNS() = 0; | 17 | virtual std::chrono::nanoseconds GetTimeNS() = 0; |
| 19 | 18 | ||
| @@ -46,6 +45,7 @@ private: | |||
| 46 | bool is_native; | 45 | bool is_native; |
| 47 | }; | 46 | }; |
| 48 | 47 | ||
| 49 | std::unique_ptr<WallClock> CreateBestMatchingClock(u32 emulated_cpu_frequency, u32 emulated_clock_frequency); | 48 | std::unique_ptr<WallClock> CreateBestMatchingClock(u32 emulated_cpu_frequency, |
| 49 | u32 emulated_clock_frequency); | ||
| 50 | 50 | ||
| 51 | } // namespace Common | 51 | } // namespace Common |