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

Calculate diff between source files.

This commit is contained in:
Bartosz Taudul
2022-12-23 18:48:05 +01:00
parent 4bb0a1f1ed
commit 5a442f123e
2 changed files with 14 additions and 0 deletions
+2
View File
@@ -744,6 +744,7 @@ private:
bool diffDone = false;
std::vector<const char*> thisUnique;
std::vector<const char*> secondUnique;
std::vector<std::pair<const char*, std::string>> diffs;
void ResetSelection()
{
@@ -768,6 +769,7 @@ private:
diffDone = false;
thisUnique.clear();
secondUnique.clear();
diffs.clear();
}
} m_compare;