aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/nntree.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libtests/nntree.cc')
-rw-r--r--libtests/nntree.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtests/nntree.cc b/libtests/nntree.cc
index f999e2e7..2296a27c 100644
--- a/libtests/nntree.cc
+++ b/libtests/nntree.cc
@@ -61,7 +61,7 @@ test_bsearch()
auto mk = [&q](std::vector<int> const& v) {
auto nums = QPDFObjectHandle::newArray();
- for (auto i : v) {
+ for (auto i: v) {
nums.appendItem(QPDFObjectHandle::newInteger(i))
.appendItem(QPDFObjectHandle::newString(
"-" + QUtil::int_to_string(i) + "-"));
@@ -199,7 +199,7 @@ test_depth()
QPDFNameTreeObjectHelper nh(n0, q);
std::cout << "--- forward ---" << std::endl;
- for (auto i : nh) {
+ for (auto i: nh) {
std::cout << i.first << " -> " << i.second.unparse() << std::endl;
}
std::cout << "--- backward ---" << std::endl;