diff options
author | Jack Lloyd <[email protected]> | 2016-10-17 03:13:03 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-10-17 03:13:58 -0400 |
commit | add6ce8543454e7f77a1ce6f281e54c139533916 (patch) | |
tree | 122d56de719f8f04e78901edea171d32ba923231 | |
parent | 0b353965a56dabf7528eecf672cc627304dbb8e1 (diff) |
Indent include so amalgamation works correctly
Otherwise <future> is thrown into the top of botan_all.h which
causes problems on IncludeOS
-rw-r--r-- | src/lib/pubkey/rsa/rsa.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/pubkey/rsa/rsa.cpp b/src/lib/pubkey/rsa/rsa.cpp index d201ca277..76366b76a 100644 --- a/src/lib/pubkey/rsa/rsa.cpp +++ b/src/lib/pubkey/rsa/rsa.cpp @@ -20,10 +20,9 @@ #endif #if defined(BOTAN_TARGET_OS_HAS_THREADS) -#include <future> + #include <future> #endif - namespace Botan { size_t RSA_PublicKey::estimated_strength() const |