aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_LZWDecoder.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/Pl_LZWDecoder.cc')
-rw-r--r--libqpdf/Pl_LZWDecoder.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/libqpdf/Pl_LZWDecoder.cc b/libqpdf/Pl_LZWDecoder.cc
index 68f1ae3e..811415bc 100644
--- a/libqpdf/Pl_LZWDecoder.cc
+++ b/libqpdf/Pl_LZWDecoder.cc
@@ -5,7 +5,6 @@
#include <string.h>
#include <assert.h>
-DLL_EXPORT
Pl_LZWDecoder::Pl_LZWDecoder(char const* identifier, Pipeline* next,
bool early_code_change) :
Pipeline(identifier, next),
@@ -21,12 +20,10 @@ Pl_LZWDecoder::Pl_LZWDecoder(char const* identifier, Pipeline* next,
memset(buf, 0, 3);
}
-DLL_EXPORT
Pl_LZWDecoder::~Pl_LZWDecoder()
{
}
-DLL_EXPORT
void
Pl_LZWDecoder::write(unsigned char* bytes, int len)
{
@@ -45,7 +42,6 @@ Pl_LZWDecoder::write(unsigned char* bytes, int len)
}
}
-DLL_EXPORT
void
Pl_LZWDecoder::finish()
{