1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Use custom vector to store plot items.

This commit is contained in:
Bartosz Taudul
2017-10-19 20:14:31 +02:00
parent 0519df4dfc
commit 6e4343c043
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ private:
double min;
double max;
bool enabled;
std::vector<PlotItem> data;
Vector<PlotItem> data;
};
void Worker();