diff options
author | Jack Lloyd <[email protected]> | 2017-10-29 12:08:52 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-29 12:08:52 -0400 |
commit | e5169713cf638a79933a09d263f69da59ac45453 (patch) | |
tree | 8dfef7112b7ff37f634385cf7168b9667f9e721c | |
parent | 1cb385d089c47485adcf87bb65e041f988b9208d (diff) |
Include <memory> in base type headers
Needed for the create calls
-rw-r--r-- | src/lib/block/block_cipher.h | 1 | ||||
-rw-r--r-- | src/lib/hash/hash.h | 1 | ||||
-rw-r--r-- | src/lib/mac/mac.h | 1 | ||||
-rw-r--r-- | src/lib/stream/stream_cipher.h | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/block/block_cipher.h b/src/lib/block/block_cipher.h index 9961182fa..a365397fa 100644 --- a/src/lib/block/block_cipher.h +++ b/src/lib/block/block_cipher.h @@ -10,6 +10,7 @@ #include <botan/sym_algo.h> #include <string> +#include <memory> namespace Botan { diff --git a/src/lib/hash/hash.h b/src/lib/hash/hash.h index 3041774b8..01e52e9b6 100644 --- a/src/lib/hash/hash.h +++ b/src/lib/hash/hash.h @@ -10,6 +10,7 @@ #include <botan/buf_comp.h> #include <string> +#include <memory> namespace Botan { diff --git a/src/lib/mac/mac.h b/src/lib/mac/mac.h index b072fbaa2..1e358a4c5 100644 --- a/src/lib/mac/mac.h +++ b/src/lib/mac/mac.h @@ -11,6 +11,7 @@ #include <botan/buf_comp.h> #include <botan/sym_algo.h> #include <string> +#include <memory> namespace Botan { diff --git a/src/lib/stream/stream_cipher.h b/src/lib/stream/stream_cipher.h index 31fa5b3b0..03ffcadd0 100644 --- a/src/lib/stream/stream_cipher.h +++ b/src/lib/stream/stream_cipher.h @@ -10,6 +10,7 @@ #include <botan/sym_algo.h> #include <string> +#include <memory> namespace Botan { |