aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/JSONHandler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/JSONHandler.cc')
-rw-r--r--libqpdf/JSONHandler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/JSONHandler.cc b/libqpdf/JSONHandler.cc
index 909aa7db..a7503401 100644
--- a/libqpdf/JSONHandler.cc
+++ b/libqpdf/JSONHandler.cc
@@ -132,7 +132,7 @@ JSONHandler::handle(std::string const& path, JSON j)
size_t i = 0;
j.forEachArrayItem([&i, &path, this](JSON v) {
this->m->h.array_item_handler->handle(
- path + "[" + QUtil::uint_to_string(i) + "]", v);
+ path + "[" + std::to_string(i) + "]", v);
++i;
});
this->m->h.array_end_handler(path);