aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Array.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2019-08-18 01:01:32 +0200
committerJay Berkenbilt <ejb@ql.org>2019-08-18 05:02:41 +0200
commita89d8a0677f726ea029a67db164e0116971ffafc (patch)
treeb6682ab35ae99a130b31832e2f6581c50d898075 /libqpdf/qpdf/QPDF_Array.hh
parente83f3308fbccd34959d325b830118eafe441fe48 (diff)
downloadqpdf-a89d8a0677f726ea029a67db164e0116971ffafc.tar.zst
Refactor QPDF_Array in preparation for using SparseOHArray
Diffstat (limited to 'libqpdf/qpdf/QPDF_Array.hh')
-rw-r--r--libqpdf/qpdf/QPDF_Array.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/qpdf/QPDF_Array.hh b/libqpdf/qpdf/QPDF_Array.hh
index 695e6587..4d2cb005 100644
--- a/libqpdf/qpdf/QPDF_Array.hh
+++ b/libqpdf/qpdf/QPDF_Array.hh
@@ -19,7 +19,7 @@ class QPDF_Array: public QPDFObject
int getNItems() const;
QPDFObjectHandle getItem(int n) const;
- std::vector<QPDFObjectHandle> const& getAsVector() const;
+ void getAsVector(std::vector<QPDFObjectHandle>&) const;
void setItem(int, QPDFObjectHandle const&);
void setFromVector(std::vector<QPDFObjectHandle> const& items);