2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-05 03:40:53 +00:00

Update formatting a documentation from last PR

This commit is contained in:
Jay Berkenbilt 2022-09-05 18:50:55 -04:00
parent 1264f4733e
commit 0a7ba62b00
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2022-09-05 Jay Berkenbilt <ejb@ql.org>
* Add a move constructor to Buffer, making it possible to move
rather than copy the internal buffer. Thanks to jbarlow83 for the
contribution.
2022-09-02 Jay Berkenbilt <ejb@ql.org> 2022-09-02 Jay Berkenbilt <ejb@ql.org>
* Add new QPDF::create() factory method that returns * Add new QPDF::create() factory method that returns

View File

@ -49,9 +49,9 @@ class Buffer
QPDF_DLL QPDF_DLL
Buffer& operator=(Buffer const&); Buffer& operator=(Buffer const&);
QPDF_DLL QPDF_DLL
Buffer(Buffer &&) noexcept; Buffer(Buffer&&) noexcept;
QPDF_DLL QPDF_DLL
Buffer& operator=(Buffer &&) noexcept; Buffer& operator=(Buffer&&) noexcept;
QPDF_DLL QPDF_DLL
size_t getSize() const; size_t getSize() const;
QPDF_DLL QPDF_DLL

View File

@ -251,6 +251,8 @@ For a detailed list of changes, please see the file
generation parameters. The old versions will continue to be generation parameters. The old versions will continue to be
supported and are not deprecated. supported and are not deprecated.
- Add a move constructor to the ``Buffer`` class.
- Other changes - Other changes
- In JSON v1 mode, the ``"objects"`` key now reflects the repaired - In JSON v1 mode, the ``"objects"`` key now reflects the repaired