Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2019-08-15 22:04:20 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-08-15 22:04:20 +0300
commit41beff29a98812da1efbd86bfde851c8cc8fc459 (patch)
tree5bdc13a27fa244efeef2e021b599539cd90c7419 /server/TracyWorker.hpp
parentc9d7b96c816f6a5704687830fc364000e5e0111f (diff)
Remove redundant GetTimeBegin().
Traces now start at zero time.
Diffstat (limited to 'server/TracyWorker.hpp')
-rw-r--r--server/TracyWorker.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/server/TracyWorker.hpp b/server/TracyWorker.hpp
index 57734f51..eba74201 100644
--- a/server/TracyWorker.hpp
+++ b/server/TracyWorker.hpp
@@ -274,7 +274,6 @@ public:
std::shared_mutex& GetDataLock() { return m_data.lock; }
size_t GetFrameCount( const FrameData& fd ) const { return fd.frames.size(); }
size_t GetFullFrameCount( const FrameData& fd ) const;
- int64_t GetTimeBegin() const { return GetFrameBegin( *m_data.framesBase, 0 ); }
int64_t GetLastTime() const { return m_data.lastTime; }
uint64_t GetZoneCount() const { return m_data.zonesCnt; }
uint64_t GetLockCount() const;