summaryrefslogtreecommitdiffstats
path: root/src/common/wall_clock.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-09-29 21:19:37 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-09-30 07:53:34 +0200
commit771a9c21cc2f401cb9fd653cefcfe9da78b8f1a7 (patch)
tree13b3f85a3024a574606639c82d58ed1e83597332 /src/common/wall_clock.h
parentMerge pull request #4721 from lioncash/genfn (diff)
downloadyuzu-771a9c21cc2f401cb9fd653cefcfe9da78b8f1a7.tar
yuzu-771a9c21cc2f401cb9fd653cefcfe9da78b8f1a7.tar.gz
yuzu-771a9c21cc2f401cb9fd653cefcfe9da78b8f1a7.tar.bz2
yuzu-771a9c21cc2f401cb9fd653cefcfe9da78b8f1a7.tar.lz
yuzu-771a9c21cc2f401cb9fd653cefcfe9da78b8f1a7.tar.xz
yuzu-771a9c21cc2f401cb9fd653cefcfe9da78b8f1a7.tar.zst
yuzu-771a9c21cc2f401cb9fd653cefcfe9da78b8f1a7.zip
Diffstat (limited to 'src/common/wall_clock.h')
-rw-r--r--src/common/wall_clock.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/wall_clock.h b/src/common/wall_clock.h
index 5db30083d..bc7adfbf8 100644
--- a/src/common/wall_clock.h
+++ b/src/common/wall_clock.h
@@ -13,6 +13,8 @@ namespace Common {
class WallClock {
public:
+ virtual ~WallClock() = default;
+
/// Returns current wall time in nanoseconds
[[nodiscard]] virtual std::chrono::nanoseconds GetTimeNS() = 0;