summaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Destroyed.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF_Destroyed.cc')
-rw-r--r--libqpdf/QPDF_Destroyed.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/libqpdf/QPDF_Destroyed.cc b/libqpdf/QPDF_Destroyed.cc
index eb84f3aa..4e34b508 100644
--- a/libqpdf/QPDF_Destroyed.cc
+++ b/libqpdf/QPDF_Destroyed.cc
@@ -17,23 +17,20 @@ QPDF_Destroyed::getInstance()
std::shared_ptr<QPDFObject>
QPDF_Destroyed::copy(bool shallow)
{
- throw std::logic_error(
- "attempted to shallow copy QPDFObjectHandle from destroyed QPDF");
+ throw std::logic_error("attempted to shallow copy QPDFObjectHandle from destroyed QPDF");
return nullptr;
}
std::string
QPDF_Destroyed::unparse()
{
- throw std::logic_error(
- "attempted to unparse a QPDFObjectHandle from a destroyed QPDF");
+ throw std::logic_error("attempted to unparse a QPDFObjectHandle from a destroyed QPDF");
return "";
}
JSON
QPDF_Destroyed::getJSON(int json_version)
{
- throw std::logic_error(
- "attempted to get JSON from a QPDFObjectHandle from a destroyed QPDF");
+ throw std::logic_error("attempted to get JSON from a QPDFObjectHandle from a destroyed QPDF");
return JSON::makeNull();
}