diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-01-30 12:36:56 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-01-30 12:36:56 -0500 |
commit | 4e766280c4481d23a64a1c80c0ec40d7cf1ff378 (patch) | |
tree | 85f078d686978b4b27fc44c7cf0b95a90a6cc4bf /src/common/wall_clock.h | |
parent | 11099dda2e2ab67ba4861d1e927afaa2ccce1efa (diff) |
common: wall_clock: Utilize constants for ms, us, and ns ratios
Diffstat (limited to 'src/common/wall_clock.h')
-rw-r--r-- | src/common/wall_clock.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/wall_clock.h b/src/common/wall_clock.h index cef3e9499f..4d132c5319 100644 --- a/src/common/wall_clock.h +++ b/src/common/wall_clock.h @@ -13,6 +13,10 @@ namespace Common { class WallClock { public: + static constexpr u64 NS_RATIO = 1'000'000'000; + static constexpr u64 US_RATIO = 1'000'000; + static constexpr u64 MS_RATIO = 1'000; + virtual ~WallClock() = default; /// Returns current wall time in nanoseconds |