Use std::list for deltas

This commit is contained in:
Antonio Andelic 2022-06-14 07:37:02 +00:00
parent 7e99e9fe43
commit bf27fe284c

View File

@ -250,7 +250,7 @@ public:
};
mutable std::unordered_map<std::string, UncommittedNode> nodes;
std::deque<Delta> deltas;
std::list<Delta> deltas;
KeeperStorage & storage;
};