aboutsummaryrefslogtreecommitdiffstats
path: root/examples/pdf-count-strings.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 /examples/pdf-count-strings.cc
parentda67a0aa043c2c8ad129fbc87b93afcdab7042a7 (diff)
downloadqpdf-2e6869483bba657515aad305a3aa7013e477c448.tar.zst
Replace calls to QUtil::int_to_string with std::to_string
Diffstat (limited to 'examples/pdf-count-strings.cc')
-rw-r--r--examples/pdf-count-strings.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pdf-count-strings.cc b/examples/pdf-count-strings.cc
index c762e7f8..529f6bdc 100644
--- a/examples/pdf-count-strings.cc
+++ b/examples/pdf-count-strings.cc
@@ -59,7 +59,7 @@ StringCounter::handleEOF()
// Write a comment at the end of the stream just to show how we
// can enhance the output if we want.
write("\n% strings found: ");
- write(QUtil::int_to_string(this->count));
+ write(std::to_string(this->count));
}
int