aboutsummaryrefslogtreecommitdiffstats
path: root/src/codec
diff options
context:
space:
mode:
Diffstat (limited to 'src/codec')
-rw-r--r--src/codec/base64/base64.cpp1
-rw-r--r--src/codec/bzip2/bzip2.cpp2
-rw-r--r--src/codec/hex/hex.cpp1
-rw-r--r--src/codec/zlib/zlib.cpp2
4 files changed, 6 insertions, 0 deletions
diff --git a/src/codec/base64/base64.cpp b/src/codec/base64/base64.cpp
index 0e01d94f3..b1a802376 100644
--- a/src/codec/base64/base64.cpp
+++ b/src/codec/base64/base64.cpp
@@ -5,6 +5,7 @@
#include <botan/base64.h>
#include <botan/charset.h>
+#include <botan/exceptn.h>
#include <algorithm>
namespace Botan {
diff --git a/src/codec/bzip2/bzip2.cpp b/src/codec/bzip2/bzip2.cpp
index 712dacd7d..18b3c51f0 100644
--- a/src/codec/bzip2/bzip2.cpp
+++ b/src/codec/bzip2/bzip2.cpp
@@ -6,6 +6,8 @@
*************************************************/
#include <botan/bzip2.h>
+#include <botan/exceptn.h>
+
#include <map>
#include <cstring>
#define BZ_NO_STDIO
diff --git a/src/codec/hex/hex.cpp b/src/codec/hex/hex.cpp
index afb082f76..4cbc1d37b 100644
--- a/src/codec/hex/hex.cpp
+++ b/src/codec/hex/hex.cpp
@@ -6,6 +6,7 @@
#include <botan/hex.h>
#include <botan/parsing.h>
#include <botan/charset.h>
+#include <botan/exceptn.h>
#include <algorithm>
namespace Botan {
diff --git a/src/codec/zlib/zlib.cpp b/src/codec/zlib/zlib.cpp
index 36a9640e3..6f1e2b770 100644
--- a/src/codec/zlib/zlib.cpp
+++ b/src/codec/zlib/zlib.cpp
@@ -6,6 +6,8 @@
*************************************************/
#include <botan/zlib.h>
+#include <botan/exceptn.h>
+
#include <cstring>
#include <map>
#include <zlib.h>