summaryrefslogtreecommitdiffstats
path: root/include/qpdf/Pl_Buffer.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/qpdf/Pl_Buffer.hh')
-rw-r--r--include/qpdf/Pl_Buffer.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/qpdf/Pl_Buffer.hh b/include/qpdf/Pl_Buffer.hh
index 39ef0746..5030e10e 100644
--- a/include/qpdf/Pl_Buffer.hh
+++ b/include/qpdf/Pl_Buffer.hh
@@ -33,6 +33,7 @@
#include <qpdf/PointerHolder.hh> // unused -- remove in qpdf 12 (see #785)
#include <memory>
+#include <vector>
class QPDF_DLL_CLASS Pl_Buffer: public Pipeline
{
@@ -77,7 +78,7 @@ class QPDF_DLL_CLASS Pl_Buffer: public Pipeline
Members(Members const&) = delete;
bool ready{true};
- std::basic_string<unsigned char> data;
+ std::vector<unsigned char> data;
};
std::shared_ptr<Members> m;