aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2023-01-08 13:52:33 +0100
committerJay Berkenbilt <jberkenbilt@users.noreply.github.com>2023-01-08 19:33:10 +0100
commit8363657cf34be7ac34b86ee32ec052cc4ed7e5e1 (patch)
tree94bcf1f85f86bf4a13d5347ac773fa7b7da9b188 /include
parent9c216a06d927bf6285dc48f22340d1f752452a6d (diff)
downloadqpdf-8363657cf34be7ac34b86ee32ec052cc4ed7e5e1.tar.zst
Change QPDFWriter::object_queue to std::vector
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/QPDFWriter.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/qpdf/QPDFWriter.hh b/include/qpdf/QPDFWriter.hh
index a9d60672..56771e18 100644
--- a/include/qpdf/QPDFWriter.hh
+++ b/include/qpdf/QPDFWriter.hh
@@ -751,7 +751,8 @@ class QPDFWriter
std::string cur_data_key;
std::list<std::shared_ptr<Pipeline>> to_delete;
Pl_Count* pipeline;
- std::list<QPDFObjectHandle> object_queue;
+ std::vector<QPDFObjectHandle> object_queue;
+ size_t object_queue_front{0};
std::map<QPDFObjGen, int> obj_renumber;
std::map<int, QPDFXRefEntry> xref;
std::map<int, qpdf_offset_t> lengths;