mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
Update formatting a documentation from last PR
This commit is contained in:
parent
1264f4733e
commit
0a7ba62b00
@ -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>
|
||||
|
||||
* Add new QPDF::create() factory method that returns
|
||||
|
@ -49,9 +49,9 @@ class Buffer
|
||||
QPDF_DLL
|
||||
Buffer& operator=(Buffer const&);
|
||||
QPDF_DLL
|
||||
Buffer(Buffer &&) noexcept;
|
||||
Buffer(Buffer&&) noexcept;
|
||||
QPDF_DLL
|
||||
Buffer& operator=(Buffer &&) noexcept;
|
||||
Buffer& operator=(Buffer&&) noexcept;
|
||||
QPDF_DLL
|
||||
size_t getSize() const;
|
||||
QPDF_DLL
|
||||
|
@ -251,6 +251,8 @@ For a detailed list of changes, please see the file
|
||||
generation parameters. The old versions will continue to be
|
||||
supported and are not deprecated.
|
||||
|
||||
- Add a move constructor to the ``Buffer`` class.
|
||||
|
||||
- Other changes
|
||||
|
||||
- In JSON v1 mode, the ``"objects"`` key now reflects the repaired
|
||||
|
Loading…
Reference in New Issue
Block a user