From 9d0316342dad9182c9fff15134d1758048c72388 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 13 Oct 2019 16:28:40 +0200 Subject: [PATCH] Move Annotation struct to a proper place. --- server/TracyEvent.hpp | 9 --------- server/TracyViewData.hpp | 8 ++++++++ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp index 92d4c90d..5a58a8a2 100644 --- a/server/TracyEvent.hpp +++ b/server/TracyEvent.hpp @@ -510,15 +510,6 @@ struct CpuThreadData enum { CpuThreadDataSize = sizeof( CpuThreadData ) }; - -struct Annotation -{ - std::string text; - int64_t start; - int64_t end; - uint32_t color; -}; - } #endif diff --git a/server/TracyViewData.hpp b/server/TracyViewData.hpp index 172eae23..f7d7d6ff 100644 --- a/server/TracyViewData.hpp +++ b/server/TracyViewData.hpp @@ -27,6 +27,14 @@ struct ViewData uint8_t dynamicColors = true; }; +struct Annotation +{ + std::string text; + int64_t start; + int64_t end; + uint32_t color; +}; + } #endif