aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-10-17 03:13:03 -0400
committerJack Lloyd <[email protected]>2016-10-17 03:13:58 -0400
commitadd6ce8543454e7f77a1ce6f281e54c139533916 (patch)
tree122d56de719f8f04e78901edea171d32ba923231
parent0b353965a56dabf7528eecf672cc627304dbb8e1 (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.cpp3
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