aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/BitStream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/BitStream.cc')
-rw-r--r--libqpdf/BitStream.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/libqpdf/BitStream.cc b/libqpdf/BitStream.cc
index 72a50706..703ce8f2 100644
--- a/libqpdf/BitStream.cc
+++ b/libqpdf/BitStream.cc
@@ -4,7 +4,6 @@
#define BITS_READ 1
#include "bits.icc"
-DLL_EXPORT
BitStream::BitStream(unsigned char const* p, int nbytes) :
start(p),
nbytes(nbytes)
@@ -12,7 +11,6 @@ BitStream::BitStream(unsigned char const* p, int nbytes) :
reset();
}
-DLL_EXPORT
void
BitStream::reset()
{
@@ -21,7 +19,6 @@ BitStream::reset()
bits_available = 8 * nbytes;
}
-DLL_EXPORT
unsigned long
BitStream::getBits(int nbits)
{
@@ -29,7 +26,6 @@ BitStream::getBits(int nbits)
this->bits_available, nbits);
}
-DLL_EXPORT
void
BitStream::skipToNextByte()
{