aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/hash/md5/md5.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-12-20 20:22:03 -0500
committerJack Lloyd <[email protected]>2018-12-21 10:07:15 -0500
commit43875971d5d6c04035b4e1c27558e2ba9a48fe97 (patch)
treeb8231e9c7d8836a899d23d5bb0e11fcff50f21d3 /src/lib/hash/md5/md5.cpp
parent2f60e29e5688bf81719f0f907d658c083378811b (diff)
Avoid including rotate.h in bswap.h
It was only needed for one case which is easily hardcoded. Include rotate.h in all the source files that actually use rotr/rotl but implicitly picked it up via loadstor.h -> bswap.h -> rotate.h include chain.
Diffstat (limited to 'src/lib/hash/md5/md5.cpp')
-rw-r--r--src/lib/hash/md5/md5.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/hash/md5/md5.cpp b/src/lib/hash/md5/md5.cpp
index de75ab2d1..3b9b4d281 100644
--- a/src/lib/hash/md5/md5.cpp
+++ b/src/lib/hash/md5/md5.cpp
@@ -6,6 +6,7 @@
*/
#include <botan/md5.h>
+#include <botan/rotate.h>
namespace Botan {