summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2012-12-30 19:28:37 +0100
committerJay Berkenbilt <ejb@ql.org>2012-12-31 16:32:32 +0100
commit4237a29c9492653e1be869d603e1b5bf87833682 (patch)
treed7e6e4a91787d224f8bc9b3e7c15ad9d56f42b6d /include
parente57c25814e49b82863753894ee7d97c18e4c4525 (diff)
downloadqpdf-4237a29c9492653e1be869d603e1b5bf87833682.tar.zst
Refactor Dictionary writing code
Original code was written before we could shallow copy objects, so all the filtering was done by suppressing the output of certain keys and replacing them with other keys. Now we can simplify the code greatly by modifying shallow copies of dictionaries in place.
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/QPDFWriter.hh1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/qpdf/QPDFWriter.hh b/include/qpdf/QPDFWriter.hh
index a8cf5054..7861203c 100644
--- a/include/qpdf/QPDFWriter.hh
+++ b/include/qpdf/QPDFWriter.hh
@@ -271,7 +271,6 @@ class QPDFWriter
static int const f_stream = 1 << 0;
static int const f_filtered = 1 << 1;
static int const f_in_ostream = 1 << 2;
- static int const f_in_extensions = 1 << 3;
enum trailer_e { t_normal, t_lin_first, t_lin_second };