diff options
author | Lioncash <mathew1800@gmail.com> | 2020-07-15 19:19:15 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-07-15 19:41:37 -0400 |
commit | 0435b7d361d45aa5eccb552d01df4cea3f4016c4 (patch) | |
tree | dbf2b76c32b7475982e8aa6fbcb274408bc809b9 /src | |
parent | bef1844a51a37c1c8dc531e67069ef00821ffa9c (diff) |
core_timing: Remove unused data member
Shrinks the size of the CoreTiming class by 8 bytes.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/core_timing.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/core_timing.h b/src/core/core_timing.h index a21356a08..120c74e46 100644 --- a/src/core/core_timing.h +++ b/src/core/core_timing.h @@ -139,8 +139,6 @@ private: u64 global_timer = 0; - std::chrono::nanoseconds start_point; - // The queue is a min-heap using std::make_heap/push_heap/pop_heap. // We don't use std::priority_queue because we need to be able to serialize, unserialize and // erase arbitrary events (RemoveEvent()) regardless of the queue order. These aren't |