From 2e6869483bba657515aad305a3aa7013e477c448 Mon Sep 17 00:00:00 2001 From: m-holger Date: Wed, 21 Sep 2022 17:49:21 +0100 Subject: Replace calls to QUtil::int_to_string with std::to_string --- libqpdf/PDFVersion.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libqpdf/PDFVersion.cc') 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 -- cgit v1.2.3-70-g09d2