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

Build lists of unique source files in comparison menu.

This commit is contained in:
Bartosz Taudul
2022-12-23 17:11:47 +01:00
parent 886456ea44
commit bd06d4e104
2 changed files with 40 additions and 0 deletions
+6
View File
@@ -741,6 +741,9 @@ private:
int64_t total[2];
int minBinVal = 1;
int compareMode = 0;
bool diffDone = false;
std::vector<const char*> thisUnique;
std::vector<const char*> secondUnique;
void ResetSelection()
{
@@ -762,6 +765,9 @@ private:
match[i].clear();
selMatch[i] = 0;
}
diffDone = false;
thisUnique.clear();
secondUnique.clear();
}
} m_compare;