aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf
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 /qpdf
parentda67a0aa043c2c8ad129fbc87b93afcdab7042a7 (diff)
downloadqpdf-2e6869483bba657515aad305a3aa7013e477c448.tar.zst
Replace calls to QUtil::int_to_string with std::to_string
Diffstat (limited to 'qpdf')
-rw-r--r--qpdf/fix-qdf.cc18
-rw-r--r--qpdf/pdf_from_scratch.cc2
2 files changed, 9 insertions, 11 deletions
diff --git a/qpdf/fix-qdf.cc b/qpdf/fix-qdf.cc
index 756b8c5d..8ab3e278 100644
--- a/qpdf/fix-qdf.cc
+++ b/qpdf/fix-qdf.cc
@@ -256,11 +256,10 @@ QdfFixer::processLines(std::list<std::string>& lines)
} else if (state == st_in_length) {
if (!matches(re_num)) {
fatal(
- filename + ":" + QUtil::uint_to_string(lineno) +
+ filename + ":" + std::to_string(lineno) +
": expected integer");
}
- std::string new_length =
- QUtil::uint_to_string(stream_length) + "\n";
+ std::string new_length = std::to_string(stream_length) + "\n";
offset -= QIntC::to_offset(line.length());
offset += QIntC::to_offset(new_length.length());
std::cout << new_length;
@@ -301,8 +300,8 @@ QdfFixer::checkObjId(std::string const& cur_obj_str)
int cur_obj = QUtil::string_to_int(cur_obj_str.c_str());
if (cur_obj != last_obj + 1) {
fatal(
- filename + ":" + QUtil::uint_to_string(lineno) +
- ": expected object " + QUtil::int_to_string(last_obj + 1));
+ filename + ":" + std::to_string(lineno) + ": expected object " +
+ std::to_string(last_obj + 1));
}
last_obj = cur_obj;
xref.push_back(QPDFXRefEntry(1, QIntC::to_offset(last_offset), 0));
@@ -325,16 +324,15 @@ QdfFixer::writeOstream()
for (auto iter: ostream_offsets) {
iter -= QIntC::to_offset(first);
++onum;
- offsets += QUtil::int_to_string(onum) + " " +
- QUtil::int_to_string(iter) + "\n";
+ offsets += std::to_string(onum) + " " + std::to_string(iter) + "\n";
}
auto offset_adjust = QIntC::to_offset(offsets.size());
first += offset_adjust;
stream_length += QIntC::to_size(offset_adjust);
std::string dict_data = "";
- dict_data += " /Length " + QUtil::uint_to_string(stream_length) + "\n";
- dict_data += " /N " + QUtil::uint_to_string(n) + "\n";
- dict_data += " /First " + QUtil::int_to_string(first) + "\n";
+ dict_data += " /Length " + std::to_string(stream_length) + "\n";
+ dict_data += " /N " + std::to_string(n) + "\n";
+ dict_data += " /First " + std::to_string(first) + "\n";
if (!ostream_extends.empty()) {
dict_data += " /Extends " + ostream_extends + "\n";
}
diff --git a/qpdf/pdf_from_scratch.cc b/qpdf/pdf_from_scratch.cc
index c401e9af..0cef5de3 100644
--- a/qpdf/pdf_from_scratch.cc
+++ b/qpdf/pdf_from_scratch.cc
@@ -78,7 +78,7 @@ runtest(int n)
w.write();
} else {
throw std::runtime_error(
- std::string("invalid test ") + QUtil::int_to_string(n));
+ std::string("invalid test ") + std::to_string(n));
}
std::cout << "test " << n << " done" << std::endl;