aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFValue.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDFValue.cc')
-rw-r--r--libqpdf/QPDFValue.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/libqpdf/QPDFValue.cc b/libqpdf/QPDFValue.cc
index 41a00fa8..a89afd55 100644
--- a/libqpdf/QPDFValue.cc
+++ b/libqpdf/QPDFValue.cc
@@ -34,6 +34,14 @@ QPDFValue::getDescription()
}
return description;
}
+ case 1:
+ {
+ auto j_descr = std::get<1>(*object_description);
+ return (
+ *j_descr.input +
+ (j_descr.object.empty() ? "" : ", " + j_descr.object) +
+ " at offset " + std::to_string(parsed_offset));
+ }
}
} else if (og.isIndirect()) {
return "object " + og.unparse(' ');