summaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Real.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <jberkenbilt@users.noreply.github.com>2023-06-17 15:26:16 +0200
committerGitHub <noreply@github.com>2023-06-17 15:26:16 +0200
commit44dce4e2988ec09e36dfb6d1fc527a143e6f597f (patch)
tree3cdb1999faeb5103eb87c36fb1673d8cbb5ab082 /libqpdf/QPDF_Real.cc
parentfc30e75122f6bef20ac8d676ac7cb8822feecf3e (diff)
parentacd0acf16931ce92bc908e4960c5a1e43d53b550 (diff)
downloadqpdf-44dce4e2988ec09e36dfb6d1fc527a143e6f597f.tar.zst
Merge pull request #978 from m-holger/reflow
Code tidy - reflow comments and strings
Diffstat (limited to 'libqpdf/QPDF_Real.cc')
-rw-r--r--libqpdf/QPDF_Real.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/libqpdf/QPDF_Real.cc b/libqpdf/QPDF_Real.cc
index 19b65a7e..1d954dcd 100644
--- a/libqpdf/QPDF_Real.cc
+++ b/libqpdf/QPDF_Real.cc
@@ -41,9 +41,8 @@ QPDF_Real::unparse()
JSON
QPDF_Real::getJSON(int json_version)
{
- // While PDF allows .x or -.x, JSON does not. Rather than
- // converting from string to double and back, just handle this as a
- // special case for JSON.
+ // While PDF allows .x or -.x, JSON does not. Rather than converting from string to double and
+ // back, just handle this as a special case for JSON.
std::string result;
if (this->val.length() == 0) {
// Can't really happen...