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

Drop an indirection level in plots.

This commit is contained in:
Bartosz Taudul
2017-12-05 21:24:09 +01:00
parent 702f235c1b
commit 081087b9ce
3 changed files with 35 additions and 54 deletions
+2 -2
View File
@@ -202,8 +202,8 @@ struct PlotData
double max;
bool showFull;
bool visible;
Vector<PlotItem*> data;
Vector<PlotItem*> postpone;
Vector<PlotItem> data;
Vector<PlotItem> postpone;
uint64_t postponeTime;
};