소스 검색

core_timing: Remove unused data member

Shrinks the size of the CoreTiming class by 8 bytes.
Lioncash 6 년 전
부모
커밋
0435b7d361
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      src/core/core_timing.h

+ 0 - 2
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