aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/PDFVersion.cc
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 /libqpdf/PDFVersion.cc
parentda67a0aa043c2c8ad129fbc87b93afcdab7042a7 (diff)
downloadqpdf-2e6869483bba657515aad305a3aa7013e477c448.tar.zst
Replace calls to QUtil::int_to_string with std::to_string
Diffstat (limited to 'libqpdf/PDFVersion.cc')
-rw-r--r--libqpdf/PDFVersion.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libqpdf/PDFVersion.cc b/libqpdf/PDFVersion.cc
index e30a3d45..a2b807c6 100644
--- a/libqpdf/PDFVersion.cc
+++ b/libqpdf/PDFVersion.cc
@@ -48,8 +48,8 @@ void
PDFVersion::getVersion(std::string& version, int& extension_level) const
{
extension_level = this->extension_level;
- version = QUtil::int_to_string(this->major_version) + "." +
- QUtil::int_to_string(this->minor_version);
+ version = std::to_string(this->major_version) + "." +
+ std::to_string(this->minor_version);
}
int