Simplified VectorArena to always take an arena and to not support change of capacity

This commit is contained in:
2026-07-22 22:12:05 -04:00
parent c0d40ef3e4
commit 9c8f9bff41
12 changed files with 213 additions and 197 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ namespace Romeo
struct Database
{
Juliet::VectorArena<FileEntry, 512, true> Entries = {};
Juliet::VectorArena<FileEntry, 512> Entries = {};
Juliet::Arena* DbArena = nullptr;
Juliet::Mutex Mutex;
};