aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/BufferInputSource.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-04-02 23:14:10 +0200
committerJay Berkenbilt <ejb@ql.org>2022-04-04 14:10:40 +0200
commit12f1eb15ca3fed6310402847559a7c99d3c77847 (patch)
tree8935675b623c6f3b4914b8b44f7fa5f2816a9241 /include/qpdf/BufferInputSource.hh
parentf20fa61eb4c323eb1642c69c236b3d9a1f8b2cdb (diff)
downloadqpdf-12f1eb15ca3fed6310402847559a7c99d3c77847.tar.zst
Programmatically apply new formatting to code
Run this: for i in **/*.cc **/*.c **/*.h **/*.hh; do clang-format < $i >| $i.new && mv $i.new $i done
Diffstat (limited to 'include/qpdf/BufferInputSource.hh')
-rw-r--r--include/qpdf/BufferInputSource.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/qpdf/BufferInputSource.hh b/include/qpdf/BufferInputSource.hh
index ac6ed8dc..7f94b8e8 100644
--- a/include/qpdf/BufferInputSource.hh
+++ b/include/qpdf/BufferInputSource.hh
@@ -22,8 +22,8 @@
#ifndef QPDF_BUFFERINPUTSOURCE_HH
#define QPDF_BUFFERINPUTSOURCE_HH
-#include <qpdf/InputSource.hh>
#include <qpdf/Buffer.hh>
+#include <qpdf/InputSource.hh>
class BufferInputSource: public InputSource
{
@@ -31,11 +31,11 @@ class BufferInputSource: public InputSource
// If own_memory is true, BufferInputSource will delete the buffer
// when finished with it. Otherwise, the caller owns the memory.
QPDF_DLL
- BufferInputSource(std::string const& description, Buffer* buf,
- bool own_memory = false);
+ BufferInputSource(
+ std::string const& description, Buffer* buf, bool own_memory = false);
QPDF_DLL
- BufferInputSource(std::string const& description,
- std::string const& contents);
+ BufferInputSource(
+ std::string const& description, std::string const& contents);
QPDF_DLL
virtual ~BufferInputSource();
QPDF_DLL