aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/BitWriter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/BitWriter.cc')
-rw-r--r--libqpdf/BitWriter.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/libqpdf/BitWriter.cc b/libqpdf/BitWriter.cc
index 96a9b4ce..5b3051d9 100644
--- a/libqpdf/BitWriter.cc
+++ b/libqpdf/BitWriter.cc
@@ -4,7 +4,6 @@
#define BITS_WRITE 1
#include "bits.icc"
-DLL_EXPORT
BitWriter::BitWriter(Pipeline* pl) :
pl(pl),
ch(0),
@@ -12,14 +11,12 @@ BitWriter::BitWriter(Pipeline* pl) :
{
}
-DLL_EXPORT
void
BitWriter::writeBits(unsigned long val, int bits)
{
write_bits(this->ch, this->bit_offset, val, bits, this->pl);
}
-DLL_EXPORT
void
BitWriter::flush()
{