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

Use custom vector.

This commit is contained in:
Bartosz Taudul
2020-01-20 23:58:36 +01:00
parent e5ae1ea2cc
commit ea424a4c8d
2 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -433,7 +433,7 @@ private:
int64_t hlOrig_t0, hlOrig_t1;
int64_t numBins = -1;
std::unique_ptr<int64_t[]> bins, binTime, selBin;
std::vector<int64_t> sorted, selSort;
Vector<int64_t> sorted, selSort;
size_t sortedNum = 0, selSortNum, selSortActive;
float average, selAverage;
float median, selMedian;