From d11622b6fd8a2d050414c3e6110f3ad68f7502af Mon Sep 17 00:00:00 2001 From: m-holger Date: Thu, 16 Nov 2023 15:06:19 +0000 Subject: Change Pl_Buffer to use std::string for storage --- include/qpdf/Pl_Buffer.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/qpdf/Pl_Buffer.hh b/include/qpdf/Pl_Buffer.hh index 5030e10e..6cf4560a 100644 --- a/include/qpdf/Pl_Buffer.hh +++ b/include/qpdf/Pl_Buffer.hh @@ -33,7 +33,7 @@ #include // unused -- remove in qpdf 12 (see #785) #include -#include +#include class QPDF_DLL_CLASS Pl_Buffer: public Pipeline { @@ -78,7 +78,7 @@ class QPDF_DLL_CLASS Pl_Buffer: public Pipeline Members(Members const&) = delete; bool ready{true}; - std::vector data; + std::string data; }; std::shared_ptr m; -- cgit v1.2.3-54-g00ecf