Move Annotation struct to a proper place.

This commit is contained in:
Bartosz Taudul 2019-10-13 16:28:40 +02:00
parent 20cf1d9f83
commit 9d0316342d
2 changed files with 8 additions and 9 deletions

View File

@ -510,15 +510,6 @@ struct CpuThreadData
enum { CpuThreadDataSize = sizeof( CpuThreadData ) }; enum { CpuThreadDataSize = sizeof( CpuThreadData ) };
struct Annotation
{
std::string text;
int64_t start;
int64_t end;
uint32_t color;
};
} }
#endif #endif

View File

@ -27,6 +27,14 @@ struct ViewData
uint8_t dynamicColors = true; uint8_t dynamicColors = true;
}; };
struct Annotation
{
std::string text;
int64_t start;
int64_t end;
uint32_t color;
};
} }
#endif #endif