summaryrefslogtreecommitdiff
path: root/ZAPD/Globals.h
diff options
context:
space:
mode:
authorRozelette <Rozelette@users.noreply.github.com>2024-04-12 22:45:25 -0500
committerGitHub <noreply@github.com>2024-04-12 23:45:25 -0400
commit6cd066f5afd61f2171f57d95b69f1e0f3204588c (patch)
tree6e749acdcced33c8d42cc45df7195f1cb9ab237c /ZAPD/Globals.h
parent8c88631bf691f0abbab48127cabc55d2a704e022 (diff)
Track the files uses to populate each segment (#13)
We can not use the overall list of files because that can have duplicates in the case of certain include patterns and isn't necessarily 1-1 with the segments.
Diffstat (limited to 'ZAPD/Globals.h')
-rw-r--r--ZAPD/Globals.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ZAPD/Globals.h b/ZAPD/Globals.h
index 95c22c2..b1d9f65 100644
--- a/ZAPD/Globals.h
+++ b/ZAPD/Globals.h
@@ -48,6 +48,7 @@ public:
std::vector<ZFile*> files;
std::vector<ZFile*> externalFiles;
std::vector<int32_t> segments;
+ std::vector<ZFile*> segmentFiles;
std::map<int, FileWorker*> workerData;