diff options
author | Jack Lloyd <[email protected]> | 2017-09-21 15:04:25 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-21 15:04:25 -0400 |
commit | 5d48c1406a956496fd4a020263ee59fbe7fad90a (patch) | |
tree | 4ea0847f71eda94c0ff3a31cfe4167ca2dba8db6 /src/tests | |
parent | 5cc5e1bd3fac87186f511a48cee9cda86e4607ca (diff) |
Header file cleanups
Some help from include-what-you-use
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/test_bigint.cpp | 1 | ||||
-rw-r--r-- | src/tests/test_otp.cpp | 1 | ||||
-rw-r--r-- | src/tests/test_x509_path.cpp | 1 | ||||
-rw-r--r-- | src/tests/tests.cpp | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/tests/test_bigint.cpp b/src/tests/test_bigint.cpp index 61be15d15..132723727 100644 --- a/src/tests/test_bigint.cpp +++ b/src/tests/test_bigint.cpp @@ -10,6 +10,7 @@ #include <botan/bigint.h> #include <botan/numthry.h> #include <botan/reducer.h> + #include <botan/parsing.h> #include <cmath> #endif diff --git a/src/tests/test_otp.cpp b/src/tests/test_otp.cpp index 480065194..12295c96c 100644 --- a/src/tests/test_otp.cpp +++ b/src/tests/test_otp.cpp @@ -8,6 +8,7 @@ #include "tests.h" #if defined(BOTAN_HAS_HOTP) + #include <botan/parsing.h> #include <botan/hotp.h> #endif diff --git a/src/tests/test_x509_path.cpp b/src/tests/test_x509_path.cpp index e7cd9c18c..544d1b35d 100644 --- a/src/tests/test_x509_path.cpp +++ b/src/tests/test_x509_path.cpp @@ -10,6 +10,7 @@ #include <botan/x509path.h> #include <botan/calendar.h> #include <botan/internal/filesystem.h> + #include <botan/parsing.h> #endif #include <algorithm> diff --git a/src/tests/tests.cpp b/src/tests/tests.cpp index 9a35caf7d..243878bcd 100644 --- a/src/tests/tests.cpp +++ b/src/tests/tests.cpp @@ -9,6 +9,7 @@ #include <sstream> #include <iomanip> #include <botan/hex.h> +#include <botan/parsing.h> #include <botan/internal/filesystem.h> #include <botan/internal/bit_ops.h> #include <botan/internal/stl_util.h> |