summaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Null.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2012-07-08 18:37:19 +0200
committerJay Berkenbilt <ejb@ql.org>2012-07-08 22:01:12 +0200
commit1dc25c021701f1f039b03bc711aed4845f930e13 (patch)
treedf6f783993f768f0bd0b01f293b3387f2d328c39 /libqpdf/qpdf/QPDF_Null.hh
parent8720446b2369d3cbf0b9e78ebb76a369022275d2 (diff)
downloadqpdf-1dc25c021701f1f039b03bc711aed4845f930e13.tar.zst
Fix: make unparse virtual for Null and Real
Diffstat (limited to 'libqpdf/qpdf/QPDF_Null.hh')
-rw-r--r--libqpdf/qpdf/QPDF_Null.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/qpdf/QPDF_Null.hh b/libqpdf/qpdf/QPDF_Null.hh
index 086a3228..dffe0260 100644
--- a/libqpdf/qpdf/QPDF_Null.hh
+++ b/libqpdf/qpdf/QPDF_Null.hh
@@ -7,7 +7,7 @@ class QPDF_Null: public QPDFObject
{
public:
virtual ~QPDF_Null();
- std::string unparse();
+ virtual std::string unparse();
};
#endif // __QPDF_NULL_HH__