diff options
author | lloyd <[email protected]> | 2007-10-19 17:21:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-10-19 17:21:28 +0000 |
commit | 4c6fa9a9040a68150531da9327b7f40857ffa057 (patch) | |
tree | 68829ebc54ff276f464cf4696b496fc9ebdb4a1b /modules | |
parent | d527b430d6f82fef220ff0461e196183ce343fc9 (diff) |
bit_ops.h no longer includes loadstor.h
Where loadstor.h was needed but only implicitly included via bit_ops.h,
include it directly
Add endian reversal functions to bit_ops.h
Remove some unneeded includes in big_ops2.cpp and a few other files.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/alg_amd64/sha160.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/alg_amd64/sha160.cpp b/modules/alg_amd64/sha160.cpp index 0c9b3b7dc..76937a577 100644 --- a/modules/alg_amd64/sha160.cpp +++ b/modules/alg_amd64/sha160.cpp @@ -4,7 +4,7 @@ *************************************************/ #include <botan/sha160.h> -#include <botan/bit_ops.h> +#include <botan/loadstor.h> namespace Botan { |