aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2022-09-21 18:49:21 +0200
committerJay Berkenbilt <jberkenbilt@users.noreply.github.com>2022-09-21 21:57:14 +0200
commit2e6869483bba657515aad305a3aa7013e477c448 (patch)
tree0487066d6069127082a5f176baf031e6ec6308b0 /include
parentda67a0aa043c2c8ad129fbc87b93afcdab7042a7 (diff)
downloadqpdf-2e6869483bba657515aad305a3aa7013e477c448.tar.zst
Replace calls to QUtil::int_to_string with std::to_string
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/Pipeline.hh2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/qpdf/Pipeline.hh b/include/qpdf/Pipeline.hh
index 0e0fb844..d5d48bdb 100644
--- a/include/qpdf/Pipeline.hh
+++ b/include/qpdf/Pipeline.hh
@@ -86,7 +86,6 @@ class QPDF_DLL_CLASS Pipeline
Pipeline& operator<<(char const* cstr);
QPDF_DLL
Pipeline& operator<<(std::string const&);
- // Calls QUtil::int_to_string
QPDF_DLL
Pipeline& operator<<(short);
QPDF_DLL
@@ -95,7 +94,6 @@ class QPDF_DLL_CLASS Pipeline
Pipeline& operator<<(long);
QPDF_DLL
Pipeline& operator<<(long long);
- // Calls QUtil::uint_to_string
QPDF_DLL
Pipeline& operator<<(unsigned short);
QPDF_DLL