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/Pl_Function.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libqpdf/Pl_Function.cc') diff --git a/libqpdf/Pl_Function.cc b/libqpdf/Pl_Function.cc index 5f2dc042..853b4212 100644 --- a/libqpdf/Pl_Function.cc +++ b/libqpdf/Pl_Function.cc @@ -25,7 +25,7 @@ Pl_Function::Pl_Function( if (code != 0) { throw std::runtime_error( std::string(identifier) + " function returned code " + - QUtil::int_to_string(code)); + std::to_string(code)); } }; } @@ -40,7 +40,7 @@ Pl_Function::Pl_Function( if (code != 0) { throw std::runtime_error( std::string(identifier) + " function returned code " + - QUtil::int_to_string(code)); + std::to_string(code)); } }; } -- cgit v1.2.3-54-g00ecf