diff options
author | Jack Lloyd <[email protected]> | 2017-09-21 17:45:06 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-21 17:45:06 -0400 |
commit | ff0370bcffd0636c002e0a20360b7aceb4a442b9 (patch) | |
tree | 3c973b245cd8e177964dc9291f38f6068eb0596c /src | |
parent | 5933cf34af50fc93d2174acf331ab284293d36bd (diff) |
Add missing header includes
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/passhash/bcrypt/bcrypt.h | 1 | ||||
-rw-r--r-- | src/lib/passhash/passhash9/passhash9.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/passhash/bcrypt/bcrypt.h b/src/lib/passhash/bcrypt/bcrypt.h index 51db8062d..7f05dccde 100644 --- a/src/lib/passhash/bcrypt/bcrypt.h +++ b/src/lib/passhash/bcrypt/bcrypt.h @@ -9,6 +9,7 @@ #define BOTAN_BCRYPT_H_ #include <botan/types.h> +#include <string> namespace Botan { diff --git a/src/lib/passhash/passhash9/passhash9.h b/src/lib/passhash/passhash9/passhash9.h index 825c63da6..5844c9f22 100644 --- a/src/lib/passhash/passhash9/passhash9.h +++ b/src/lib/passhash/passhash9/passhash9.h @@ -9,6 +9,7 @@ #define BOTAN_PASSHASH9_H_ #include <botan/types.h> +#include <string> namespace Botan { |