From a758de2f037025db1de8db29ed133c999ccc6b49 Mon Sep 17 00:00:00 2001 From: Andrey Voroshilov Date: Sun, 12 Jul 2020 10:06:09 -0700 Subject: [PATCH] Moving `GetProfiler` back to the original place --- client/TracyProfiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp index ad31dda3..fc0eaf12 100644 --- a/client/TracyProfiler.cpp +++ b/client/TracyProfiler.cpp @@ -962,8 +962,8 @@ static ProfilerThreadData& GetProfilerThreadData() } TRACY_API moodycamel::ConcurrentQueue::ExplicitProducer* GetToken() { return GetProfilerThreadData().token.ptr; } -TRACY_API Profiler& GetProfiler() { return GetProfilerData().profiler; } TRACY_API moodycamel::ConcurrentQueue& GetQueue() { return GetProfilerData().queue; } +TRACY_API Profiler& GetProfiler() { return GetProfilerData().profiler; } TRACY_API int64_t GetInitTime() { return GetProfilerData().initTime; } TRACY_API std::atomic& GetLockCounter() { return GetProfilerData().lockCounter; } TRACY_API std::atomic& GetGpuCtxCounter() { return GetProfilerData().gpuCtxCounter; }